Endpoint Playground
Test Crawlora's Search TicketWeb 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/ticketweb/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Artist, event, or venue query | |
| page | integer | No | One-based result page, 1-50 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "comedy",
"page": 1,
"count": 20,
"source_url": "https://www.ticketweb.com/search?q=comedy",
"fetched_at": "2026-08-24T18:00:00Z",
"events": [
{
"id": "14241184",
"name": "Comedy Beast",
"url": "https://www.ticketweb.com/event/comedy-beast-howlin-wolf-tickets/14241184",
"image_url": "https://www.ticketweb.com//i/00/12/41/18/44_Listings.jpg",
"start_time": "2026-08-25T19:30",
"venue": {
"name": "Howlin' Wolf",
"address": "New Orleans, LA",
"url": "https://www.ticketweb.com/venue/howlin-wolf-new-orleans-la/15005"
},
"availability": "in_stock"
}
]
}
}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 TicketWeb events by artist, event, or venue. A zero count with an empty events list is a valid no-results response. availability is one of `in_stock`, `sold_out`, `unknown` per event.
{
"code": 200,
"msg": "OK",
"data": {
"query": "comedy",
"page": 1,
"count": 20,
"source_url": "https://www.ticketweb.com/search?q=comedy",
"fetched_at": "2026-08-24T18:00:00Z",
"events": [
{
"id": "14241184",
"name": "Comedy Beast",
"url": "https://www.ticketweb.com/event/comedy-beast-howlin-wolf-tickets/14241184",
"image_url": "https://www.ticketweb.com//i/00/12/41/18/44_Listings.jpg",
"start_time": "2026-08-25T19:30",
"venue": {
"name": "Howlin' Wolf",
"address": "New Orleans, LA",
"url": "https://www.ticketweb.com/venue/howlin-wolf-new-orleans-la/15005"
},
"availability": "in_stock"
}
]
}
}curl "https://api.crawlora.net/api/v1/ticketweb/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"