Endpoint Playground
Test Crawlora's SeatGeek Search 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/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Free-text search query | |
| limit | integer | No | Maximum results per result type (events/performers/venues), 1-50 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "dodgers",
"events": [
{
"id": 17695775,
"title": "San Francisco Giants at Los Angeles Dodgers",
"short_title": "Giants at Dodgers",
"type": "mlb",
"datetime_local": "2026-09-18T19:10:00",
"datetime_utc": "2026-09-19T02:10:00",
"venue_name": "UNIQLO Field at Dodger Stadium",
"venue_location": "Los Angeles, CA",
"lowest_price": 24,
"url": "https://seatgeek.com/san-francisco-giants-at-los-angeles-dodgers-tickets/mlb/9-18-2026-los-angeles-california-uniqlo-field-at-dodger-stadium/17695775"
}
],
"performers": [
{
"id": 1,
"name": "Los Angeles Dodgers",
"short_name": "Dodgers",
"type": "mlb",
"image": "https://seatgeekimages.com/performers-landscape/los-angeles-dodgers-75122b/1/huge.jpg",
"event_count": 222,
"url": "https://seatgeek.com/los-angeles-dodgers-tickets"
}
],
"venues": [
{
"id": 1,
"name": "UNIQLO Field at Dodger Stadium",
"display_location": "Los Angeles, CA",
"capacity": 56000,
"event_count": 114,
"url": "https://seatgeek.com/venues/dodger-stadium/tickets"
}
]
}
}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.
Free-text search across SeatGeek's own catalog of events, performers (sports teams, artists, and shows), and venues -- the same call the site's own search box and search-results page use. Any of the three result lists may come back empty for a query with no matches in that type.
{
"code": 200,
"msg": "OK",
"data": {
"query": "dodgers",
"events": [
{
"id": 17695775,
"title": "San Francisco Giants at Los Angeles Dodgers",
"short_title": "Giants at Dodgers",
"type": "mlb",
"datetime_local": "2026-09-18T19:10:00",
"datetime_utc": "2026-09-19T02:10:00",
"venue_name": "UNIQLO Field at Dodger Stadium",
"venue_location": "Los Angeles, CA",
"lowest_price": 24,
"url": "https://seatgeek.com/san-francisco-giants-at-los-angeles-dodgers-tickets/mlb/9-18-2026-los-angeles-california-uniqlo-field-at-dodger-stadium/17695775"
}
],
"performers": [
{
"id": 1,
"name": "Los Angeles Dodgers",
"short_name": "Dodgers",
"type": "mlb",
"image": "https://seatgeekimages.com/performers-landscape/los-angeles-dodgers-75122b/1/huge.jpg",
"event_count": 222,
"url": "https://seatgeek.com/los-angeles-dodgers-tickets"
}
],
"venues": [
{
"id": 1,
"name": "UNIQLO Field at Dodger Stadium",
"display_location": "Los Angeles, CA",
"capacity": 56000,
"event_count": 114,
"url": "https://seatgeek.com/venues/dodger-stadium/tickets"
}
]
}
}curl "https://api.crawlora.net/api/v1/seatgeek/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"