SeatDataDocs

Search events (legacy)

POST/v0.3.1/events/search

Legacy event search (POST) - for new integrations, prefer GET /v1/events/search.

Searches SeatData events. Returns the SeatData Event ID needed for the salesdata, listings, and v1 stats endpoints.

  • All search fields are case-insensitive.
  • Partial strings will be matched, including dates (e.g., '2023' in event_date matches all 2023 events).
  • All body properties are optional.
  • Use historical=true to search events before the current date.
  • No charge per call.

Note: Searches with non-Western characters (Cyrillic, CJK, Greek, etc.) return an empty result. For multilingual lookup, use tm_event_id or std_event_id via the v1 search endpoint.

Caveat: venue_name and venue_state may contain non-standard values (e.g., "CA" or "Cal" for California). For standardized values, use the v1 search endpoint.

Authorization

AuthorizationBearer <token>

Pass Authorization: Bearer <api_key>. Preferred for new integrations.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/v0.3.1/events/search" \  -H "Authorization: Bearer YOUR_API_KEY" \  -H "Content-Type: application/json" \  -d '{    "event_name": "Taylor Swift",    "venue_city": "Cincinnati"  }'
[  {    "result_total": 1,    "items": [      {        "event_id": 45558,        "event_name": "Taylor Swift",        "event_date": "2023-04-25",        "venue_name": "AT&T Park",        "venue_city": "San Francisco",        "venue_state": "CA"      }    ],    "errors": false  }]