Endpoint Playground
Test Crawlora's Search StubHub 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/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Search query |
{
"code": 200,
"msg": "OK",
"data": {
"query": "The Weeknd",
"more": false,
"special_char_only": false,
"groups": [
{
"entity": 5,
"count": 1,
"results": [
{
"id": 26202,
"title": "The Weeknd",
"url": "https://www.stubhub.com/the-weeknd-tickets/performer/714235",
"subtitle": "Concert Tickets",
"icon_name": "Concert",
"entity_type": 1
}
]
}
],
"source_url": "https://www.stubhub.com/search/groupedsearch?FormatDate=true",
"fetched_at": "2026-09-22T12:00:00Z"
}
}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.
Searches StubHub's anonymous grouped-search endpoint. Results are returned in StubHub's own performer/grouping/event result groups; the upstream request uses multipart form data and requires no cookies or CSRF token.
{
"code": 200,
"msg": "OK",
"data": {
"query": "The Weeknd",
"more": false,
"special_char_only": false,
"groups": [
{
"entity": 5,
"count": 1,
"results": [
{
"id": 26202,
"title": "The Weeknd",
"url": "https://www.stubhub.com/the-weeknd-tickets/performer/714235",
"subtitle": "Concert Tickets",
"icon_name": "Concert",
"entity_type": 1
}
]
}
],
"source_url": "https://www.stubhub.com/search/groupedsearch?FormatDate=true",
"fetched_at": "2026-09-22T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/stubhub/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"