Endpoint Playground
Test Crawlora's SeatGeek Venue Schedule 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-events?venue_id=<venue_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| venue_id | integer | Yes | SeatGeek's own numeric venue id | |
| page | integer | No | 1-based page number | |
| per_page | integer | No | Results per page, 1-50 |
{
"code": 200,
"msg": "OK",
"data": {
"venue_id": 1,
"page": 1,
"per_page": 25,
"total": 114,
"events": [
{
"id": 18200001,
"title": "San Francisco Giants at Los Angeles Dodgers",
"datetime_utc": "2026-09-19T02:10:00",
"venue": {
"id": 1,
"name": "UNIQLO Field at Dodger Stadium"
},
"stats": {
"listing_count": 320,
"average_price": 62
}
}
]
}
}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 page of a SeatGeek venue's upcoming event schedule, soonest first. venue_id is SeatGeek's own numeric venue id, obtained from a search or event result (e.g. 1 for UNIQLO Field at Dodger Stadium).
{
"code": 200,
"msg": "OK",
"data": {
"venue_id": 1,
"page": 1,
"per_page": 25,
"total": 114,
"events": [
{
"id": 18200001,
"title": "San Francisco Giants at Los Angeles Dodgers",
"datetime_utc": "2026-09-19T02:10:00",
"venue": {
"id": 1,
"name": "UNIQLO Field at Dodger Stadium"
},
"stats": {
"listing_count": 320,
"average_price": 62
}
}
]
}
}curl "https://api.crawlora.net/api/v1/seatgeek/venue-events?venue_id=<venue_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"