Understanding the Response

If successful, the API will return a 200 OK status and a JSON object. Here is a snippet of what the simplified ShowGiant response will look like:

JSON
{
  "success": true,
  "pagination": { ... },
  "events": [
    {
      "identifier": "jambase:345678",
      "eventName": "The National at The Chicago Theatre",
      "startDate": "2025-10-22T20:00:00",
      "venue": {
        "name": "The Chicago Theatre",
        "city": "Chicago",
        "state": "IL"
      },
      "artists": [
        {
          "name": "The National",
          "isHeadliner": true
        }
      ],
      "ticketInfo": { ... }
    }
    // ... other events
  ]
}