Endpoint Playground
Test Crawlora's StubHub Categories 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/categories?lat=<lat>&lon=<lon>" \
-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. |
{
"code": 200,
"msg": "OK",
"data": {
"from": "2026-09-15T00:00:00Z",
"to": "2026-09-29T00:00:00Z",
"count": 2,
"source_url": "https://www.stubhub.com/?method=GetTopSubcategoryLinks&latitude=22.364&longitude=114.109&fromDate=2026-09-15T00:00:00.000Z&toDate=2026-09-29T00:00:00.000Z",
"fetched_at": "2026-09-15T04:00:00Z",
"categories": [
{
"id": 3,
"name": "Concert Tickets",
"url": "https://www.stubhub.com/concert-tickets/category/1"
},
{
"id": 5084,
"name": "NFL",
"url": "https://www.stubhub.com/nfl-tickets/grouping/121",
"min_price": 45
}
]
}
}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 StubHub's top-level verticals (Concerts, Sports, Theater) and their subcategories/leagues (NFL, NBA, ...), each with the lowest currently-listed ticket price for that category within the date range at the given location. Use this to discover valid category ids and names before browsing a specific one.
{
"code": 200,
"msg": "OK",
"data": {
"from": "2026-09-15T00:00:00Z",
"to": "2026-09-29T00:00:00Z",
"count": 2,
"source_url": "https://www.stubhub.com/?method=GetTopSubcategoryLinks&latitude=22.364&longitude=114.109&fromDate=2026-09-15T00:00:00.000Z&toDate=2026-09-29T00:00:00.000Z",
"fetched_at": "2026-09-15T04:00:00Z",
"categories": [
{
"id": 3,
"name": "Concert Tickets",
"url": "https://www.stubhub.com/concert-tickets/category/1"
},
{
"id": 5084,
"name": "NFL",
"url": "https://www.stubhub.com/nfl-tickets/grouping/121",
"min_price": 45
}
]
}
}curl "https://api.crawlora.net/api/v1/stubhub/categories?lat=<lat>&lon=<lon>" \
-H "x-api-key: $CRAWLORA_API_KEY"