Endpoint Playground
Test Crawlora's StubHub Explore 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/stubhub/explore?lat=<lat>&lon=<lon>&top_level_category_id=0" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| lat | number | Yes | Latitude, -90 to 90 | |
| lon | number | Yes | Longitude, -180 to 180 | |
| from | string | No | Start of the date range: RFC3339 or a bare date (e.g. 2026-09-15). Defaults to now. | |
| to | string | No | End of the date range, same accepted formats as from. Defaults to 14 days after from. | |
| price_min | integer | No | Minimum ticket price filter | |
| price_max | integer | No | Maximum ticket price filter | |
| top_level_category_id | integer | No | 0 | Filter to one top-level vertical |
| category_id | integer | No | Filter to one category/subcategory id. stubhub-categories discovers ids with a currently-listed event nearby, but only a small subset -- known-good ids: NBA 6453, MLB 6456, NFL 5084, NHL 4871, MLS 5062, Tennis 1012, Golf 1009 (Sports); Pop/Rock 260542, Alternative Music 1059, Classical 1014, R&B 1027, Rap and Hip-Hop Music 1026 (Concerts); Comedy 1015, Musicals 1017, Plays 358959, Family 2294 (Theater); Festival Tickets 1023 (works alone, no top_level_category_id needed) |
{
"code": 200,
"msg": "OK",
"data": {
"lat": 34.0549076,
"lon": -118.242643,
"from": "2026-09-15T00:00:00Z",
"to": "2026-09-29T00:00:00Z",
"count": 1,
"source_url": "https://www.stubhub.com/explore?method=getExploreEvents&from=1789430400000&lat=MzQuMDU0OTA3Ng==&lon=LTExOC4yNDI2NDM=&to=1790640000000",
"fetched_at": "2026-09-15T04:00:00Z",
"events": [
{
"event_id": 161341819,
"name": "SoFi Stadium Tours",
"url": "https://www.stubhub.com/sofi-stadium-tour-inglewood-tickets-9-15-2026/event/161341819/",
"image_url": "https://media.stubhubstatic.com/stubhub-v2-catalog/d_defaultLogo.jpg/q_auto:low,f_auto,c_fill,g_auto,w_280,h_170,dpr_2.0/categories/1/SHTheater-Fallback1",
"category_id": 150041313,
"venue_name": "SoFi Stadium",
"location": "Inglewood, CA, USA",
"day_of_week": "Tue",
"date": "Sep 15",
"time": "10:00 AM",
"is_date_confirmed": true,
"is_time_confirmed": true,
"has_active_listings": false
}
]
}
}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.
Discovers events near a location within a date range, optionally bounded by ticket price and by category. A zero count with an empty events list is a valid no-results response.
{
"code": 200,
"msg": "OK",
"data": {
"lat": 34.0549076,
"lon": -118.242643,
"from": "2026-09-15T00:00:00Z",
"to": "2026-09-29T00:00:00Z",
"count": 1,
"source_url": "https://www.stubhub.com/explore?method=getExploreEvents&from=1789430400000&lat=MzQuMDU0OTA3Ng==&lon=LTExOC4yNDI2NDM=&to=1790640000000",
"fetched_at": "2026-09-15T04:00:00Z",
"events": [
{
"event_id": 161341819,
"name": "SoFi Stadium Tours",
"url": "https://www.stubhub.com/sofi-stadium-tour-inglewood-tickets-9-15-2026/event/161341819/",
"image_url": "https://media.stubhubstatic.com/stubhub-v2-catalog/d_defaultLogo.jpg/q_auto:low,f_auto,c_fill,g_auto,w_280,h_170,dpr_2.0/categories/1/SHTheater-Fallback1",
"category_id": 150041313,
"venue_name": "SoFi Stadium",
"location": "Inglewood, CA, USA",
"day_of_week": "Tue",
"date": "Sep 15",
"time": "10:00 AM",
"is_date_confirmed": true,
"is_time_confirmed": true,
"has_active_listings": false
}
]
}
}curl "https://api.crawlora.net/api/v1/stubhub/explore?lat=<lat>&lon=<lon>" \
-H "x-api-key: $CRAWLORA_API_KEY"