Endpoint Playground
Test Crawlora's SeatGeek Performer Schedule 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-events?performer_id=<performer_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| performer_id | integer | Yes | SeatGeek's own numeric performer id | |
| page | integer | No | 1-based page number | |
| per_page | integer | No | Results per page, 1-50 |
{
"code": 200,
"msg": "OK",
"data": {
"performer_id": 2,
"page": 1,
"per_page": 25,
"total": 188,
"events": [
{
"id": 17695775,
"title": "New York Yankees at Minnesota Twins",
"datetime_utc": "2026-09-15T23:40:00",
"venue": {
"id": 10,
"name": "Target Field"
},
"stats": {
"listing_count": 455,
"average_price": 48
}
}
]
}
}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 page of a SeatGeek performer's (sports team, artist, or show) upcoming event schedule, soonest first. performer_id is SeatGeek's own numeric performer id, obtained from a search result (e.g. 1 for the Los Angeles Dodgers).
{
"code": 200,
"msg": "OK",
"data": {
"performer_id": 2,
"page": 1,
"per_page": 25,
"total": 188,
"events": [
{
"id": 17695775,
"title": "New York Yankees at Minnesota Twins",
"datetime_utc": "2026-09-15T23:40:00",
"venue": {
"id": 10,
"name": "Target Field"
},
"stats": {
"listing_count": 455,
"average_price": 48
}
}
]
}
}curl "https://api.crawlora.net/api/v1/seatgeek/performer-events?performer_id=<performer_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"