SeatGeek API endpoint
Use Crawlora's Get a SeatGeek event's detail API to extract supported public SeatGeek data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/seatgeek/eventReturns one SeatGeek event's full detail: title, timing, venue, performers, category taxonomy, and SeatGeek's own live secondary-market pricing snapshot (listing/ticket counts, average/median/lowest/highest price). id is SeatGeek's own numeric event id, obtained from a search or performer-events result. Pricing is an aggregate snapshot only -- no per-seat listing rows and no checkout/purchase flow. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| id | integer | Yes | SeatGeek's own numeric event id | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/seatgeek/event" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- `stats` is an aggregate pricing snapshot only (`listing_count`, `ticket_count`, `average_price`, `median_price`, `lowest_price`, `highest_price`) — this endpoint does not surface per-seat listing rows or any checkout/purchase flow. - `performers` lists every performer on the event; a sports event's away team has `home_team: false`, and the primary performer/home team is marked `primary: true`/`home_team: true`. - `taxonomies` is SeatGeek's own category tree for the event (e.g. `sports` > `baseball` > `mlb`), root to leaf. - An `id` with no matching event returns a 404. Example response: ```json { "code": 200, "msg": "OK", "data": { "id": 17695775, "title": "New York Yankees at Minnesota Twins", "short_title": "Yankees at Twins", "type": "mlb", "datetime_local": "2026-09-15T18:40:00", "datetime_utc": "2026-09-15T23:40:00", "status": "onsale", "is_open": true, "score": 0.72, "url": "https://seatgeek.com/minnesota-twins-tickets/9-15-2026-minneapolis-minnesota-target-field/mlb/17695775", "venue": { "id": 10, "name": "Target Field", "city": "Minneapolis", "state": "MN", "country": "US", "timezone": "America/Chicago", "capacity": 38544, "display_location": "Minneapolis, MN", "url": "https://seatgeek.com/venues/target-field/tickets" }, "performers": [ { "id": 2, "name": "New York Yankees", "type": "mlb", "home_team": false }, { "id": 3, "name": "Minnesota Twins", "type": "mlb", "primary": true, "home_team": true } ], "stats": { "listing_count": 455, "ticket_count": 1967, "average_price": 48, "median_price": 41, "lowest_price": 0, "highest_price": 645 }, "taxonomies": [ { "id": 1000000, "name": "sports" }, { "id": 1010000, "name": "baseball", "parent_id": 1000000 }, { "id": 1010100, "name": "mlb", "parent_id": 1010000 } ] } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"id": 17695775,
"title": "New York Yankees at Minnesota Twins",
"short_title": "Yankees at Twins",
"type": "mlb",
"datetime_local": "2026-09-15T18:40:00",
"datetime_utc": "2026-09-15T23:40:00",
"status": "onsale",
"is_open": true,
"score": 0.72,
"url": "https://seatgeek.com/minnesota-twins-tickets/9-15-2026-minneapolis-minnesota-target-field/mlb/17695775",
"venue": {
"id": 10,
"name": "Target Field",
"city": "Minneapolis",
"state": "MN",
"country": "US",
"timezone": "America/Chicago",
"capacity": 38544,
"display_location": "Minneapolis, MN",
"url": "https://seatgeek.com/venues/target-field/tickets"
},
"performers": [
{
"id": 2,
"name": "New York Yankees",
"type": "mlb",
"home_team": false
},
{
"id": 3,
"name": "Minnesota Twins",
"type": "mlb",
"primary": true,
"home_team": true
}
],
"stats": {
"listing_count": 455,
"ticket_count": 1967,
"average_price": 48,
"median_price": 41,
"lowest_price": 0,
"highest_price": 645
},
"taxonomies": [
{
"id": 1000000,
"name": "sports"
},
{
"id": 1010000,
"name": "baseball",
"parent_id": 1000000
},
{
"id": 1010100,
"name": "mlb",
"parent_id": 1010000
}
]
}
}Request schema
No body schema
Response schema
#/definitions/seatgeek.eventResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | seatgeek.Event | No | ||||
| data.date_tbd | boolean | No | ||||
| data.datetime_local | string | No | ||||
| data.datetime_utc | string | No | ||||
| data.description | string | No | ||||
| data.id | integer | No | 17695775 | |||
| data.is_open | boolean | No | ||||
| data.performers | array | No | ||||
| data.performers[].home_team | boolean | No | ||||
| data.performers[].id | integer | No | ||||
| data.performers[].image | string | No | ||||
| data.performers[].name | string | No | ||||
| data.performers[].primary | boolean | No | ||||
| data.performers[].type | string | No | mlb | |||
| data.performers[].url | string | No | ||||
| data.popularity | number | No | ||||
| data.score | number | No | ||||
| data.season_stage | string | No | ||||
| data.short_title | string | No | ||||
| data.stats | seatgeek.EventStats | No | ||||
| data.stats.average_price | number | No | ||||
| data.stats.highest_price | number | No | ||||
| data.stats.listing_count | integer | No | ||||
| data.stats.lowest_price | number | No | ||||
| data.stats.lowest_sg_base_price | number | No | ||||
| data.stats.median_price | number | No | ||||
| data.stats.ticket_count | integer | No | ||||
| data.status | string | No | ||||
| data.taxonomies | array | No | ||||
| data.taxonomies[].id | integer | No | 1010100 | |||
| data.taxonomies[].name | string | No | mlb | |||
| data.taxonomies[].parent_id | integer | No | 1010000 | |||
| data.taxonomies[].seo_event_type | string | No | ||||
| data.time_tbd | boolean | No | ||||
| data.title | string | No | ||||
| data.type | string | No | mlb | |||
| data.url | string | No | ||||
| data.venue | seatgeek.Venue | No | ||||
| data.venue.capacity | integer | No | ||||
| data.venue.city | string | No | ||||
| data.venue.country | string | No | US | |||
| data.venue.display_location | string | No | Los Angeles, CA | |||
| data.venue.has_upcoming_events | boolean | No | ||||
| data.venue.id | integer | No | ||||
| data.venue.location | seatgeek.GeoLocation | No | ||||
| data.venue.location.lat | number | No | ||||
| data.venue.location.lon | number | No | ||||
| data.venue.name | string | No | ||||
| data.venue.num_upcoming_events | integer | No | ||||
| data.venue.popularity | number | No | ||||
| data.venue.postal_code | string | No | ||||
| data.venue.score | number | No | ||||
| data.venue.slug | string | No | ||||
| data.venue.state | string | No | ||||
| data.venue.stats | seatgeek.VenueStats | No | ||||
| data.venue.stats.event_count | integer | No | ||||
| data.venue.timezone | string | No | America/New_York | |||
| data.venue.url | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/seatgeek/event" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms