Endpoint Playground
Test Crawlora's StubHub 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/stubhub/trending-events?top_level_category_id=0" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| top_level_category_id | integer | No | 0 | Filter to one top-level vertical |
| page | integer | No | One-based result page |
{
"code": 200,
"msg": "OK",
"data": {
"top_level_category_id": 3,
"page": 1,
"page_size": 20,
"total_count": 200,
"count": 20,
"source_url": "https://www.stubhub.com/?method=TrendingEventsLocale&categoryId=3&maxRows=20&page=0",
"fetched_at": "2026-09-15T21:30:00Z",
"events": [
{
"event_id": 160790802,
"name": "Celine Dion",
"url": "https://www.stubhub.com/celine-dion-nanterre-tickets-9-19-2026/event/160790802/",
"image_url": "https://media.stubhubstatic.com/stubhub-v2-catalog/d_defaultLogo.jpg/categories/4892/6576812",
"category_id": 4892,
"venue_name": "Plenitude Arena (formerly Paris La Defense Arena)",
"location": "NANTERRE, Ile-de-France",
"day_of_week": "Sat",
"date": "Sep 19 2026",
"time": "7:30 PM",
"is_date_confirmed": true,
"is_time_confirmed": true
}
]
}
}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 a paginated global feed of StubHub's currently-trending individual events (name, date, venue, canonical URL), optionally filtered to one top-level category vertical. Distinct from stubhub-trending, which rotates featured performers/teams rather than individual events. A zero count with an empty events list is a valid no-results response.
{
"code": 200,
"msg": "OK",
"data": {
"top_level_category_id": 3,
"page": 1,
"page_size": 20,
"total_count": 200,
"count": 20,
"source_url": "https://www.stubhub.com/?method=TrendingEventsLocale&categoryId=3&maxRows=20&page=0",
"fetched_at": "2026-09-15T21:30:00Z",
"events": [
{
"event_id": 160790802,
"name": "Celine Dion",
"url": "https://www.stubhub.com/celine-dion-nanterre-tickets-9-19-2026/event/160790802/",
"image_url": "https://media.stubhubstatic.com/stubhub-v2-catalog/d_defaultLogo.jpg/categories/4892/6576812",
"category_id": 4892,
"venue_name": "Plenitude Arena (formerly Paris La Defense Arena)",
"location": "NANTERRE, Ile-de-France",
"day_of_week": "Sat",
"date": "Sep 19 2026",
"time": "7:30 PM",
"is_date_confirmed": true,
"is_time_confirmed": true
}
]
}
}curl "https://api.crawlora.net/api/v1/stubhub/trending-events" \
-H "x-api-key: $CRAWLORA_API_KEY"