Endpoint Playground
Test Crawlora's StubHub Performer 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/performer-events?performer_slug=<performer_slug>&performer_id=<performer_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| performer_slug | string | Yes | The performer's URL slug, e.g. kansas-city-chiefs-tickets | |
| performer_id | integer | Yes | The performer's numeric id |
{
"code": 200,
"msg": "OK",
"data": {
"performer_slug": "kansas-city-chiefs-tickets",
"performer_id": 6063,
"count": 7,
"source_url": "https://www.stubhub.com/kansas-city-chiefs-tickets/performer/6063",
"fetched_at": "2026-09-15T18:40:00Z",
"events": [
{
"name": "Indianapolis Colts at Kansas City Chiefs",
"url": "https://www.stubhub.com/kansas-city-chiefs-kansas-city-tickets-9-20-2026/event/160425136/",
"start_date": "2026-09-20T19:20:00",
"venue_name": "GEHA Field at Arrowhead Stadium",
"venue_city": "Kansas City",
"venue_state": "Missouri",
"venue_country": "USA",
"low_price": 71.87,
"price_currency": "USD",
"availability": "http://schema.org/InStock"
}
]
}
}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 performer or team's own upcoming schedule (event name, date, venue, starting price) scraped from their StubHub page. Obtain a real performer_slug+performer_id pair from stubhub-trending's url field (e.g. https://www.stubhub.com/kansas-city-chiefs-tickets/performer/6063 -- slug "kansas-city-chiefs-tickets", id 6063). A zero count with an empty events list is a valid no-upcoming-events response.
{
"code": 200,
"msg": "OK",
"data": {
"performer_slug": "kansas-city-chiefs-tickets",
"performer_id": 6063,
"count": 7,
"source_url": "https://www.stubhub.com/kansas-city-chiefs-tickets/performer/6063",
"fetched_at": "2026-09-15T18:40:00Z",
"events": [
{
"name": "Indianapolis Colts at Kansas City Chiefs",
"url": "https://www.stubhub.com/kansas-city-chiefs-kansas-city-tickets-9-20-2026/event/160425136/",
"start_date": "2026-09-20T19:20:00",
"venue_name": "GEHA Field at Arrowhead Stadium",
"venue_city": "Kansas City",
"venue_state": "Missouri",
"venue_country": "USA",
"low_price": 71.87,
"price_currency": "USD",
"availability": "http://schema.org/InStock"
}
]
}
}curl "https://api.crawlora.net/api/v1/stubhub/performer-events?performer_slug=<performer_slug>&performer_id=<performer_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"