Endpoint Playground
Test Crawlora's Zomato Collections 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/collections?city=<city>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| city | string | Yes | Zomato public city slug, e.g. \ |
{
"code": 200,
"msg": "OK",
"data": {
"city": "mumbai",
"collections": [
{
"name": "Best pubs & bars",
"url": "https://www.zomato.com/mumbai/best-bars-and-pubs",
"num_places": "54 Places",
"image_url": "https://b.zmtcdn.com/data/collections/bars.png"
},
{
"name": "Insta-worthy spots",
"url": "https://www.zomato.com/mumbai/insta-worthy",
"num_places": "59 Places",
"image_url": "https://b.zmtcdn.com/data/collections/insta.png"
}
]
}
}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 "best of" restaurant collections for a city (e.g. "Best pubs & bars", "Iconic restaurants", "Insta-worthy spots") -- distinct editorial groupings of restaurants, not a keyword/geo search. Each collection's url is the value /zomato/collection takes. Zomato curates collections for larger cities only; a real city it curates none for returns a 404.
{
"code": 200,
"msg": "OK",
"data": {
"city": "mumbai",
"collections": [
{
"name": "Best pubs & bars",
"url": "https://www.zomato.com/mumbai/best-bars-and-pubs",
"num_places": "54 Places",
"image_url": "https://b.zmtcdn.com/data/collections/bars.png"
},
{
"name": "Insta-worthy spots",
"url": "https://www.zomato.com/mumbai/insta-worthy",
"num_places": "59 Places",
"image_url": "https://b.zmtcdn.com/data/collections/insta.png"
}
]
}
}curl "https://api.crawlora.net/api/v1/zomato/collections?city=<city>" \
-H "x-api-key: $CRAWLORA_API_KEY"