Endpoint Playground
Test Crawlora's SeatGeek Events Near 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/events-near?lat=<lat>&lon=<lon>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| lat | number | Yes | Latitude | |
| lon | number | Yes | Longitude | |
| page | integer | No | 1-based page number | |
| per_page | integer | No | Results per page, 1-50 |
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"per_page": 25,
"total": 569,
"geolocation": {
"city": "Albuquerque",
"state": "NM",
"country": "US",
"display_name": "Albuquerque, NM",
"range": "50mi"
},
"events": [
{
"id": 17807813,
"title": "Salt Lake Bees at Albuquerque Isotopes",
"datetime_utc": "2026-09-15T23:00:00"
}
]
}
}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 SeatGeek events near a coordinate, soonest first -- the same call its city pages and homepage location-based sections make. Pair with GET /seatgeek/cities for a curated list of coordinates, or pass any coordinate directly.
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"per_page": 25,
"total": 569,
"geolocation": {
"city": "Albuquerque",
"state": "NM",
"country": "US",
"display_name": "Albuquerque, NM",
"range": "50mi"
},
"events": [
{
"id": 17807813,
"title": "Salt Lake Bees at Albuquerque Isotopes",
"datetime_utc": "2026-09-15T23:00:00"
}
]
}
}curl "https://api.crawlora.net/api/v1/seatgeek/events-near?lat=<lat>&lon=<lon>" \
-H "x-api-key: $CRAWLORA_API_KEY"