Endpoint Playground
Test Crawlora's List SeatGeek's curated metro areas 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/cities" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"cities": [
{
"id": 72,
"name": "Albuquerque",
"slug": "albuquerque",
"state": "New Mexico",
"country": "United States",
"lat": 35.08794,
"lon": -106.6357,
"radius": "20mi",
"show_concerts": true,
"show_sports": true,
"show_theater": true
}
],
"total": 87
}
}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 SeatGeek's own curated "browse by city" directory (87 metro areas as of 2026-09-15): id, name, state, country, coordinates, and which verticals (concerts/sports/theater) it supports. Each city's lat/lon pairs directly with GET /seatgeek/events-near.
{
"code": 200,
"msg": "OK",
"data": {
"cities": [
{
"id": 72,
"name": "Albuquerque",
"slug": "albuquerque",
"state": "New Mexico",
"country": "United States",
"lat": 35.08794,
"lon": -106.6357,
"radius": "20mi",
"show_concerts": true,
"show_sports": true,
"show_theater": true
}
],
"total": 87
}
}curl "https://api.crawlora.net/api/v1/seatgeek/cities" \
-H "x-api-key: $CRAWLORA_API_KEY"