Endpoint Playground
Test Crawlora's Get a TicketWeb event 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/event?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric TicketWeb event id |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.ticketweb.com/event/comedy-beast-howlin-wolf-tickets/14241184",
"fetched_at": "2026-08-24T18:00:00Z",
"event": {
"id": "14241184",
"name": "Comedy Beast",
"url": "https://www.ticketweb.com/event/comedy-beast-howlin-wolf-tickets/14241184",
"start_time": "2026-08-25T19:30:00.000-05:00",
"on_sale_time": "2026-07-01T12:05:00.000-05:00",
"age_restriction": 18,
"age_restriction_message": "Ages 18+",
"venue": {
"id": "15005",
"name": "Howlin' Wolf",
"address": "907 South Peters",
"city": "New Orleans",
"state": "LA",
"postal_code": "70130",
"country": "US",
"time_zone": "US/Central"
},
"attractions": [
{
"name": "Comedy Beast",
"category": "Arts & Theater",
"genre": "Comedy"
}
],
"delivery_methods": [
{
"name": "eTickets",
"description": "Display on your mobile device or print out your ticket for entry!",
"fee": "Free"
}
],
"currency": "USD",
"has_tickets": true,
"price_range": {
"min": 8.16,
"max": 8.16
},
"sections": [
{
"name": "GA Seating",
"sold_out": false,
"purchase_limit": 10,
"prices": [
{
"name": "GA Seating",
"base": 5,
"fees": {
"credit_card": 0.16,
"per_ticket": 1.5,
"rebate": 1.5
},
"total": 8.16,
"sold_out": false,
"max_purchase_limit": 10
}
]
}
]
}
}
}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 normalized details for one TicketWeb event: venue, dates, age restriction, delivery methods, and per-tier ticket pricing (base price, fee breakdown, and total) when tickets are on sale. `has_tickets` is false and `sections` is empty for a free/RSVP event with no paid tickets, a sold-out event, or an access-code-gated event -- TicketWeb's own data does not reliably distinguish these three cases at this level, so the response reports the shared observable state (no purchasable sections) rather than guessing which applies.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.ticketweb.com/event/comedy-beast-howlin-wolf-tickets/14241184",
"fetched_at": "2026-08-24T18:00:00Z",
"event": {
"id": "14241184",
"name": "Comedy Beast",
"url": "https://www.ticketweb.com/event/comedy-beast-howlin-wolf-tickets/14241184",
"start_time": "2026-08-25T19:30:00.000-05:00",
"on_sale_time": "2026-07-01T12:05:00.000-05:00",
"age_restriction": 18,
"age_restriction_message": "Ages 18+",
"venue": {
"id": "15005",
"name": "Howlin' Wolf",
"address": "907 South Peters",
"city": "New Orleans",
"state": "LA",
"postal_code": "70130",
"country": "US",
"time_zone": "US/Central"
},
"attractions": [
{
"name": "Comedy Beast",
"category": "Arts & Theater",
"genre": "Comedy"
}
],
"delivery_methods": [
{
"name": "eTickets",
"description": "Display on your mobile device or print out your ticket for entry!",
"fee": "Free"
}
],
"currency": "USD",
"has_tickets": true,
"price_range": {
"min": 8.16,
"max": 8.16
},
"sections": [
{
"name": "GA Seating",
"sold_out": false,
"purchase_limit": 10,
"prices": [
{
"name": "GA Seating",
"base": 5,
"fees": {
"credit_card": 0.16,
"per_ticket": 1.5,
"rebate": 1.5
},
"total": 8.16,
"sold_out": false,
"max_purchase_limit": 10
}
]
}
]
}
}
}curl "https://api.crawlora.net/api/v1/ticketweb/event?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"