Endpoint Playground
Test Crawlora's Get a SeatGeek performer's detail 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/seatgeek/performer?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | integer | Yes | SeatGeek's own numeric performer id |
{
"code": 200,
"msg": "OK",
"data": {
"id": 1,
"name": "Los Angeles Dodgers",
"short_name": "Dodgers",
"type": "mlb",
"image": "https://seatgeekimages.com/performers-landscape/los-angeles-dodgers-75122b/1/huge.jpg",
"url": "https://seatgeek.com/los-angeles-dodgers-tickets",
"home_venue_id": 1,
"has_upcoming_events": true,
"num_upcoming_events": 221,
"event_count": 221,
"taxonomies": [
{
"id": 1000000,
"name": "sports"
},
{
"id": 1010000,
"name": "baseball",
"parent_id": 1000000
},
{
"id": 1010100,
"name": "mlb",
"parent_id": 1010000
}
]
}
}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 SeatGeek performer's (sports team, artist, or show) full detail by direct id lookup: name, type, image, popularity, home venue id, upcoming-event counts, and category taxonomy. id is SeatGeek's own numeric performer id, obtained from a search result. Use this when you already have a bare performer id and want to skip a search round-trip; seatgeek-search returns the same fields for a query.
{
"code": 200,
"msg": "OK",
"data": {
"id": 1,
"name": "Los Angeles Dodgers",
"short_name": "Dodgers",
"type": "mlb",
"image": "https://seatgeekimages.com/performers-landscape/los-angeles-dodgers-75122b/1/huge.jpg",
"url": "https://seatgeek.com/los-angeles-dodgers-tickets",
"home_venue_id": 1,
"has_upcoming_events": true,
"num_upcoming_events": 221,
"event_count": 221,
"taxonomies": [
{
"id": 1000000,
"name": "sports"
},
{
"id": 1010000,
"name": "baseball",
"parent_id": 1000000
},
{
"id": 1010100,
"name": "mlb",
"parent_id": 1010000
}
]
}
}curl "https://api.crawlora.net/api/v1/seatgeek/performer?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"