Endpoint Playground
Test Crawlora's StubHub navigation 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/navigation-categories?category_id=1" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category_id | integer | Yes | 1 | Top-level category: 1=Theater, 2=Sports, 3=Concerts |
{
"code": 200,
"msg": "OK",
"data": {
"category_id": 1,
"id": 1,
"title": "Theater",
"url": "https://www.stubhub.com/theater-and-arts-tickets/category/174",
"view_all_content": "View More Theater",
"subcategories": [
{
"id": 12585,
"title": "Broadway Shows",
"url": "https://www.stubhub.com/broadway-shows-tickets/category/138275421"
}
]
}
}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 the nested navigation taxonomy for one StubHub top-level category. The upstream accepts exactly category_id 1 (Theater), 2 (Sports), or 3 (Concerts). Use the returned ids and URLs to discover category and subcategory pages.
{
"code": 200,
"msg": "OK",
"data": {
"category_id": 1,
"id": 1,
"title": "Theater",
"url": "https://www.stubhub.com/theater-and-arts-tickets/category/174",
"view_all_content": "View More Theater",
"subcategories": [
{
"id": 12585,
"title": "Broadway Shows",
"url": "https://www.stubhub.com/broadway-shows-tickets/category/138275421"
}
]
}
}curl "https://api.crawlora.net/api/v1/stubhub/navigation-categories?category_id=<category_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"