Endpoint Playground
Test Crawlora's Browse SeatGeek events by category 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/events-by-category?taxonomy_id=<taxonomy_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| taxonomy_id | integer | Yes | A SeatGeek taxonomy id from GET /seatgeek/categories | |
| page | integer | No | 1-based page number | |
| per_page | integer | No | Results per page, 1-50 |
{
"code": 200,
"msg": "OK",
"data": {
"taxonomy_id": 1010100,
"page": 1,
"per_page": 25,
"total": 3475,
"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 SeatGeek events under a category/taxonomy, soonest first. taxonomy_id is a SeatGeek category id from GET /seatgeek/categories, e.g. 1010100 for MLB.
{
"code": 200,
"msg": "OK",
"data": {
"taxonomy_id": 1010100,
"page": 1,
"per_page": 25,
"total": 3475,
"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/events-by-category?taxonomy_id=<taxonomy_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"