SeatDataDocs

Request event add

POST/v0.4/events/event-request-add

Submit a search query to find and add events to the SeatData platform.

Returns a job ID used to check status.

Notes:

  • Maximum 5 simultaneous jobs (pending or processing) per user
  • Maximum query length: 200 characters
  • Allowed characters: alphanumeric, spaces, basic punctuation (a-zA-Z0-9 -_.,'"&)

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

application/json

application/json

curl -X POST "https://example.com/v0.4/events/event-request-add" \  -H "Authorization: Bearer YOUR_API_KEY" \  -H "Content-Type: application/json" \  -d '{    "search_query": "Taylor Swift Madison Square Garden"  }'
{  "job_id": "550e8400-e29b-41d4-a716-446655440000",  "status": "pending",  "message": "Job queued.",  "active_jobs": 1,  "max_simultaneous": 5}