Endpoint Playground
Test Crawlora's Zomato Collection 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/collection?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Canonical public Zomato collection URL, from /zomato/collections's url field |
{
"code": 200,
"msg": "OK",
"data": {
"name": "Best pubs & bars",
"url": "https://www.zomato.com/mumbai/best-bars-and-pubs",
"description": "Bringing exciting flavours and oomph, these pubs and bars have got some really refreshing sips waiting for you.",
"num_places": "54 Places",
"restaurants": [
{
"id": "36277",
"name": "Sammy Sosa",
"url": "https://www.zomato.com/mumbai/restaurants/sammy-sosa",
"type": "chain",
"cuisines": [
"Mexican",
"Continental"
],
"locality": "Bandra West, Mumbai",
"rating": 4.3,
"rating_count": "1,204",
"image_url": "https://b.zmtcdn.com/data/pictures/7/36277/img.jpg"
}
]
}
}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 Zomato curated collection's restaurant list (name, cuisines, locality, rating, and headline review count where Zomato's own response includes them). Reads the same underlying page-render source as /zomato/restaurant and /zomato/restaurant/menu, pointed at the collection's own page instead of a restaurant's.
{
"code": 200,
"msg": "OK",
"data": {
"name": "Best pubs & bars",
"url": "https://www.zomato.com/mumbai/best-bars-and-pubs",
"description": "Bringing exciting flavours and oomph, these pubs and bars have got some really refreshing sips waiting for you.",
"num_places": "54 Places",
"restaurants": [
{
"id": "36277",
"name": "Sammy Sosa",
"url": "https://www.zomato.com/mumbai/restaurants/sammy-sosa",
"type": "chain",
"cuisines": [
"Mexican",
"Continental"
],
"locality": "Bandra West, Mumbai",
"rating": 4.3,
"rating_count": "1,204",
"image_url": "https://b.zmtcdn.com/data/pictures/7/36277/img.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/zomato/collection?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"