Skip to main content
AI Studio  add-on for Spider.
Food
zomato.com Verified

Zomato Scraper

Extract restaurant listings, user reviews, menu photos, and dining ratings from Zomato. Built on spider-browser .

Get started Docs
target
zomato.com
success rate
99.9%
latency
~4ms
POST /fetch/zomato.com/
return_format
curl -X POST https://api.spider.cloud/fetch/zomato.com/ \
  -H "Authorization: Bearer $SPIDER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
200 OK · cache hit · response shape
{
  "url": "https://zomato.com/",
  "status": 200,
  "data": {
    "restaurant_name": "string",
    "rating": "string",
    "cuisine": "string",
    "price_for_two": "string",
    "address": "string",
    "reviews": "string",
    "photos": "string",
    "delivery_time": "string"
  }
}
Quick start

Extract data in minutes.

Structured JSON from zomato.com with a single POST. AI-resolved selectors, cached on the first call.

zomato-scraper.ts
import { SpiderBrowser } from "spider-browser";

const spider = new SpiderBrowser({
  apiKey: process.env.SPIDER_API_KEY!,
  stealth: 2,
});

await spider.connect();
const page = spider.page!;
await page.goto("https://www.zomato.com/mumbai/delivery");
await page.content(10000);

const data = await page.evaluate(`(() => {
  const restaurants = [];
  document.querySelectorAll("[data-testid='restaurant-card']").forEach(el => {
    const name = el.querySelector("h4")?.textContent?.trim();
    const rating = el.querySelector("[data-testid='rating-text']")?.textContent?.trim();
    const cuisine = el.querySelector("[data-testid='cuisine-text']")?.textContent?.trim();
    const price = el.querySelector("[data-testid='cost-for-two']")?.textContent?.trim();
    if (name) restaurants.push({ name, rating, cuisine, price });
  });
  return JSON.stringify({ total: restaurants.length, restaurants: restaurants.slice(0, 10) });
})()`);

console.log(JSON.parse(data));
await spider.close();
ready to run · spider-browser · TypeScript
Extraction

Fields you can pull.

Restaurant nameRatingCuisinePrice for twoAddressReviewsPhotosDelivery time
Listings

Menu & restaurant data

Extract menus, prices, ratings, and delivery info from zomato.com.

Geo

Location targeting

Access location-specific menus and availability with geo-targeted proxies.

Rendering

Dynamic content

Handle lazy-loaded menus, infinite scroll, and interactive search results.

Related

More Food scrapers.

Start

Start scraping zomato.com.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.