Endpoint Playground
Test Crawlora's SeatGeek Trending Events 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/trending?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 |
{
"code": 200,
"msg": "OK",
"data": {
"list_id": "trending_events_dma",
"list_type": "trending",
"list_display_name": "Trending near you",
"items": [
{
"entity_type": "event",
"entity_id": 18116891,
"entity_name": "Commanders at Cowboys",
"entity_url": "https://seatgeek.com/dallas-cowboys-tickets/9-20-2026-arlington-texas-at-t-stadium/nfl/18116891",
"event_datetime_local": "2026-09-20T15:25:00",
"event_datetime_utc": "2026-09-20T20:25:00Z",
"lowest_price": 35,
"rank": 1,
"rank_change": 0
}
]
}
}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 SeatGeek's own geo-personalized "trending near you" event feed for a coordinate -- the same list its homepage renders.
{
"code": 200,
"msg": "OK",
"data": {
"list_id": "trending_events_dma",
"list_type": "trending",
"list_display_name": "Trending near you",
"items": [
{
"entity_type": "event",
"entity_id": 18116891,
"entity_name": "Commanders at Cowboys",
"entity_url": "https://seatgeek.com/dallas-cowboys-tickets/9-20-2026-arlington-texas-at-t-stadium/nfl/18116891",
"event_datetime_local": "2026-09-20T15:25:00",
"event_datetime_utc": "2026-09-20T20:25:00Z",
"lowest_price": 35,
"rank": 1,
"rank_change": 0
}
]
}
}curl "https://api.crawlora.net/api/v1/seatgeek/trending?lat=<lat>&lon=<lon>" \
-H "x-api-key: $CRAWLORA_API_KEY"