Endpoint Playground
Test Crawlora's Get a TicketWeb venue 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/venue?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric TicketWeb venue id | |
| page | integer | No | One-based page of upcoming events, 1-50 |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.ticketweb.com/venue/howlin-wolf-new-orleans-la/15005",
"fetched_at": "2026-08-24T18:00:00Z",
"venue": {
"id": "15005",
"name": "Howlin' Wolf",
"url": "https://www.ticketweb.com/venue/howlin-wolf-new-orleans-la/15005",
"address": "907 South Peters, New Orleans, LA 70130"
},
"page": 1,
"count": 20,
"events": [
{
"id": "14241184",
"name": "Comedy Beast",
"url": "https://www.ticketweb.com/event/comedy-beast-howlin-wolf-tickets/14241184",
"start_time": "2026-08-25T19:30",
"venue": {
"name": "Howlin' Wolf",
"address": "907 South Peters, New Orleans, LA 70130",
"url": "https://www.ticketweb.com/venue/Howlin' Wolf/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.
Returns one TicketWeb venue's detail (name, address) plus one page of its upcoming events. A zero count with an empty events list on page 1 is a valid "no upcoming events" response.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.ticketweb.com/venue/howlin-wolf-new-orleans-la/15005",
"fetched_at": "2026-08-24T18:00:00Z",
"venue": {
"id": "15005",
"name": "Howlin' Wolf",
"url": "https://www.ticketweb.com/venue/howlin-wolf-new-orleans-la/15005",
"address": "907 South Peters, New Orleans, LA 70130"
},
"page": 1,
"count": 20,
"events": [
{
"id": "14241184",
"name": "Comedy Beast",
"url": "https://www.ticketweb.com/event/comedy-beast-howlin-wolf-tickets/14241184",
"start_time": "2026-08-25T19:30",
"venue": {
"name": "Howlin' Wolf",
"address": "907 South Peters, New Orleans, LA 70130",
"url": "https://www.ticketweb.com/venue/Howlin' Wolf/15005"
},
"availability": "in_stock"
}
]
}
}curl "https://api.crawlora.net/api/v1/ticketweb/venue?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"