Endpoint Playground
Test Crawlora's Get a Ticketmaster 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/ticketmaster/venue?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric Ticketmaster venue id |
{
"code": 200,
"data": {
"fetched_at": "sample",
"source_url": "https://example.com/resource",
"venue": {
"address": "1901 W Madison",
"city": "Chicago",
"country": "US",
"discovery_id": "KovZpa2M7e",
"id": "32882",
"image_url": "https://example.com/resource",
"info": [
{
"name": "Parking",
"text": "sample"
}
],
"latitude": 41.881244,
"longitude": -87.674274,
"name": "United Center",
"postal_code": "60612",
"state": "IL",
"time_zone": "America/Chicago",
"url": "https://example.com/resource"
}
},
"msg": "OK"
}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 and visitor information for one Ticketmaster venue.
{
"code": 200,
"data": {
"fetched_at": "sample",
"source_url": "https://example.com/resource",
"venue": {
"address": "1901 W Madison",
"city": "Chicago",
"country": "US",
"discovery_id": "KovZpa2M7e",
"id": "32882",
"image_url": "https://example.com/resource",
"info": [
{
"name": "Parking",
"text": "sample"
}
],
"latitude": 41.881244,
"longitude": -87.674274,
"name": "United Center",
"postal_code": "60612",
"state": "IL",
"time_zone": "America/Chicago",
"url": "https://example.com/resource"
}
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/ticketmaster/venue?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"