Endpoint Playground
Test Crawlora's Zomato Cities 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/zomato/cities" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Case-insensitive substring match against a city's name or slug. Omit to list every city in the directory. |
{
"code": 200,
"msg": "OK",
"data": {
"total": 2,
"cities": [
{
"name": "Delhi NCR",
"slug": "ncr",
"url": "https://www.zomato.com/ncr"
},
{
"name": "Mumbai",
"slug": "mumbai",
"url": "https://www.zomato.com/mumbai"
}
]
}
}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 Zomato's own curated directory of major Indian cities -- the discovery source for the city value used by zomato-search, zomato-restaurant, zomato-restaurant-menu, zomato-collections, and zomato-collection. This is Zomato's own "popular locations" directory, not an exhaustive list of every city Zomato serves -- some smaller markets resolve to a real Zomato city page without appearing here. A city slug from a caller's own prior knowledge (a restaurant URL's first path segment) can still be valid even if this endpoint does not return it. Credential-free.
{
"code": 200,
"msg": "OK",
"data": {
"total": 2,
"cities": [
{
"name": "Delhi NCR",
"slug": "ncr",
"url": "https://www.zomato.com/ncr"
},
{
"name": "Mumbai",
"slug": "mumbai",
"url": "https://www.zomato.com/mumbai"
}
]
}
}curl "https://api.crawlora.net/api/v1/zomato/cities" \
-H "x-api-key: $CRAWLORA_API_KEY"