Endpoint Playground
Test Crawlora's StubHub Category 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/stubhub/category-events?category_id=<category_id>&lat=<lat>&lon=<lon>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category_id | integer | Yes | A category id from stubhub-categories | |
| 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. | |
| page | integer | No | One-based result page | |
| radius_miles | integer | No | Search radius in miles from lat/lon | |
| include_parking_passes | boolean | No | Also include parking-pass-only listings alongside regular events |
{
"code": 200,
"msg": "OK",
"data": {
"category_id": 3,
"page": 1,
"page_size": 20,
"total_count": 1588,
"count": 20,
"source_url": "https://www.stubhub.com/nfl-tickets/grouping/121?method=GetFilteredEvents&categoryId=3&...",
"fetched_at": "2026-09-15T08:37:21Z",
"events": [
{
"event_id": 161280784,
"name": "ERRA",
"url": "https://www.stubhub.com/erra-sayreville-tickets-9-15-2026/event/161280784/",
"venue_name": "Starland Ballroom",
"venue_city": "Sayreville",
"venue_state": "NJ",
"country": "USA",
"distance_miles": "26 mi",
"day_of_week": "Tue",
"date": "Sep 15",
"time": "6:30 PM",
"is_date_confirmed": true,
"is_time_confirmed": true,
"has_active_listings": true,
"is_multiday_event": false,
"is_parking_pass": 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.
Lists paginated events in a single StubHub category (a sport league, team, or a top-level vertical -- use stubhub-categories to discover category ids) filtered by location, radius, and date range. A zero count with an empty events list is a valid no-results response.
{
"code": 200,
"msg": "OK",
"data": {
"category_id": 3,
"page": 1,
"page_size": 20,
"total_count": 1588,
"count": 20,
"source_url": "https://www.stubhub.com/nfl-tickets/grouping/121?method=GetFilteredEvents&categoryId=3&...",
"fetched_at": "2026-09-15T08:37:21Z",
"events": [
{
"event_id": 161280784,
"name": "ERRA",
"url": "https://www.stubhub.com/erra-sayreville-tickets-9-15-2026/event/161280784/",
"venue_name": "Starland Ballroom",
"venue_city": "Sayreville",
"venue_state": "NJ",
"country": "USA",
"distance_miles": "26 mi",
"day_of_week": "Tue",
"date": "Sep 15",
"time": "6:30 PM",
"is_date_confirmed": true,
"is_time_confirmed": true,
"has_active_listings": true,
"is_multiday_event": false,
"is_parking_pass": false
}
]
}
}curl "https://api.crawlora.net/api/v1/stubhub/category-events?category_id=<category_id>&lat=<lat>&lon=<lon>" \
-H "x-api-key: $CRAWLORA_API_KEY"