Endpoint Playground
Test Crawlora's Get a SeatGeek venue'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/venue?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | integer | Yes | SeatGeek's own numeric venue id |
{
"code": 200,
"msg": "OK",
"data": {
"id": 1,
"name": "UNIQLO Field at Dodger Stadium",
"slug": "dodger-stadium",
"city": "Los Angeles",
"state": "CA",
"country": "US",
"postal_code": "90012",
"timezone": "America/Los_Angeles",
"capacity": 56000,
"display_location": "Los Angeles, CA",
"has_upcoming_events": true,
"num_upcoming_events": 114,
"location": {
"lat": 34.0718,
"lon": -118.246
},
"stats": {
"event_count": 114
},
"url": "https://seatgeek.com/venues/dodger-stadium/tickets"
}
}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 venue's full detail: address, city/state/country, timezone, capacity, coordinates, and upcoming-event counts. id is SeatGeek's own numeric venue id, obtained from a search or event result.
{
"code": 200,
"msg": "OK",
"data": {
"id": 1,
"name": "UNIQLO Field at Dodger Stadium",
"slug": "dodger-stadium",
"city": "Los Angeles",
"state": "CA",
"country": "US",
"postal_code": "90012",
"timezone": "America/Los_Angeles",
"capacity": 56000,
"display_location": "Los Angeles, CA",
"has_upcoming_events": true,
"num_upcoming_events": 114,
"location": {
"lat": 34.0718,
"lon": -118.246
},
"stats": {
"event_count": 114
},
"url": "https://seatgeek.com/venues/dodger-stadium/tickets"
}
}curl "https://api.crawlora.net/api/v1/seatgeek/venue?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"