Endpoint Playground
Test Crawlora's StubHub Venue 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/venue-events?venue_slug=<venue_slug>&venue_id=<venue_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| venue_slug | string | Yes | The venue's URL slug, e.g. geha-field-at-arrowhead-stadium-tickets | |
| venue_id | integer | Yes | The venue's numeric id |
{
"code": 200,
"msg": "OK",
"data": {
"venue_slug": "geha-field-at-arrowhead-stadium-tickets",
"venue_id": 4467,
"count": 11,
"source_url": "https://www.stubhub.com/geha-field-at-arrowhead-stadium-tickets/venue/4467",
"fetched_at": "2026-09-15T20:05: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",
"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 venue's own upcoming event calendar (event name, date, starting price) scraped from its StubHub page. Obtain a real venue_slug+venue_id pair from another endpoint's event url field (e.g. https://www.stubhub.com/geha-field-at-arrowhead-stadium-tickets/venue/4467/ -- slug "geha-field-at-arrowhead-stadium-tickets", id 4467). A zero count with an empty events list is a valid no-upcoming-events response.
{
"code": 200,
"msg": "OK",
"data": {
"venue_slug": "geha-field-at-arrowhead-stadium-tickets",
"venue_id": 4467,
"count": 11,
"source_url": "https://www.stubhub.com/geha-field-at-arrowhead-stadium-tickets/venue/4467",
"fetched_at": "2026-09-15T20:05: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",
"low_price": 71.87,
"price_currency": "USD",
"availability": "http://schema.org/InStock"
}
]
}
}curl "https://api.crawlora.net/api/v1/stubhub/venue-events?venue_slug=<venue_slug>&venue_id=<venue_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"