Endpoint Playground
Test Crawlora's StubHub Trending Performers 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?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 |
{
"code": 200,
"msg": "OK",
"data": {
"top_level_category_id": 0,
"count": 10,
"source_url": "https://www.stubhub.com/?method=HeroBannerContent&topLevelCategoryId=0",
"fetched_at": "2026-09-15T05:00:00Z",
"performers": [
{
"id": 20519,
"name": "Bruno Mars",
"url": "https://www.stubhub.com/bruno-mars-tickets/performer/492103",
"image_url": "https://media.stubhubstatic.com/stubhub-v2-catalog/d_defaultLogo.jpg/q_auto:low,f_auto,c_fill,g_auto,w_1600,h_800/categories/20519/6583095",
"favorites_count": 154655,
"event_dates_range": "Sep 16 - May 29 2027"
}
]
}
}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 performers/teams StubHub itself is currently featuring on its homepage hero rotation, each with a follower/favorites count and its upcoming event date range. A zero count with an empty performers list is a valid no-results response.
{
"code": 200,
"msg": "OK",
"data": {
"top_level_category_id": 0,
"count": 10,
"source_url": "https://www.stubhub.com/?method=HeroBannerContent&topLevelCategoryId=0",
"fetched_at": "2026-09-15T05:00:00Z",
"performers": [
{
"id": 20519,
"name": "Bruno Mars",
"url": "https://www.stubhub.com/bruno-mars-tickets/performer/492103",
"image_url": "https://media.stubhubstatic.com/stubhub-v2-catalog/d_defaultLogo.jpg/q_auto:low,f_auto,c_fill,g_auto,w_1600,h_800/categories/20519/6583095",
"favorites_count": 154655,
"event_dates_range": "Sep 16 - May 29 2027"
}
]
}
}curl "https://api.crawlora.net/api/v1/stubhub/trending" \
-H "x-api-key: $CRAWLORA_API_KEY"