Events

Event Search By Id

Description

Returns event listing data by a Shows On Sale ID or the ID of an agent.

Request

GET /events/{showsOnSaleId}
GET /events/{agent}/{agentId}
  • Path Parameters:
    • showsOnSaleId: The service or ID of the event (required).
    • agent: The agent type (e.g., ticketMaster, skybox, etc.) (required).
    • agentId: The ID of the event. This value can be comma delimited to return multiple events in a single lookup (required).

Response

  • Status Code: 200 OK
  • Content Type: application/json
  • Response Body: Event listing data.
  • Possible Status Codes:
    • 400 Bad Request: Returned if the request was not in the correct format.
    • 404 Not Found: Returned if the event was not found.

Example

GET /events/evt_12345
GET /events/ticketmaster/0F006092D0EF3D61

Response:
```json
{
    "id": "evt_12345",
    "name": "Event Name",
    ...
}
Previous
Event Search By Agent