Endpoint Playground
Test Crawlora's Get a SeatGeek event's detail API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/seatgeek/event?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | integer | Yes | SeatGeek's own numeric event id |
{
"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
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns 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.
{
"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
}
]
}
}curl "https://api.crawlora.net/api/v1/seatgeek/event?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"