zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
On this page
  • Playground
  • Code examples
  • Full reference
  • Related APIs
Food & Drink/Zomato
Logo Zomato

Zomato

Data restoran Zomato: pencarian per kota/cuisine, detail restoran, menu, dan ulasan. Catatan: Zomato tidak beroperasi di Indonesia — gunakan kota pasar aktif (mis. bangalore, dubai).

Endpoints
4
Requests
4
Updated
3 months ago
For LLMs
llms.txt
Endpoint health14 hours ago
  • menupassing, 0.9s
  • reviewspassing, 0.6s
  • searchpassing, 0.8s
  • detailpassing, 0.5s
4/4 passingdaily 01:00 WIB

Playground

4 endpoints
GET/v1/food:zomato/menu10m cache1 paramchecking key…
Parameters
pathstringrequired

Restaurant path or full URL from a search result (the url field)

·
Response
EXAMPLE
{
  "note": "Dish prices are not publicly available for this restaurant; only dish names, descriptions and images are returned.",
  "path": "/bangalore/yazu-pan-asian-supper-club-ashok-nagar-bangalore/order",
  "source": "zomato.com",
  "dishCount": 137,
  "categories": [
    {
      "name": "Sushi",
      "subCategories": [
        {
          "name": "Veg Sushi",
          "items": [
            {
              "id": "ctl_792270206",
              "desc": "(4 pcs / 8 pcs) (Spicy) A vegetable roll with avocado, spicy mayo, sesame and miso dressing. (Contains dairy, soy, sesame)",
              "name": "Autumn Sushi Roll",
              "image": "https://b.zmtcdn.com/data/dish_photos/92f/346de4d0346b03b44019e548461ac92f.jpeg",
              "dietarySlugs": [
                "veg"
              ]
            },
            {
              "id": "ctl_792270207",
              "desc": "(4 pcs / 8 pcs) Avocado roll topped with truffle mayo and crispy tanuki. (Contains sesame, dairy) [GF] [Protein: 0.65 gms per Piece]",
              "name": "Avocado Sensei Sushi Roll",
              "image": "https://b.zmtcdn.com/data/dish_photos/761/f4872d690eb5c5579e6b024fc511f761.jpeg",
              "dietarySlugs": [
                "veg"
              ]
            }
          ]
        },
        {
          "name": "Non-veg Sushi",
          "items": [
            {
              "id": "ctl_792270217",
              "desc": "(4 pcs / 8 pcs) Classic roll with crab stick, avocado, and tobiko. (Contains dairy, shellfish, fish) [Protein: 1.3 gms per Piece]",
              "name": "Non-veg Classic California Sushi Roll",
              "image": "https://b.zmtcdn.com/data/dish_photos/b60/3e0f061b1ff63d88fede8cb2e5059b60.jpeg",
              "dietarySlugs": [
                "non-veg"
              ]
            },
            {
              "id": "ctl_792270218",
              "desc": "(4 pcs / 8 pcs) Salmon and cream cheese roll with avocado served with wasabi, gari and soy sauce. (Contains dairy, fish)",
              "name": "Philadelphia Sushi Roll",
              "image": "https://b.zmtcdn.com/data/dish_photos/769/ed52bedd4e153e901e32480ab85d3769.jpeg",
              "dietarySlugs": [
                "non-veg"
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "Dim Sum & Bao",
      "subCategories": [
        {
          "name": "Veg Dim Sum",
          "items": [
            {
              "id": "ctl_792270221",
              "desc": "(4 pcs / 6 pcs) Pine nut and vegetable filling in a kiwi crystal skin. (Contains gluten) [Protein: 0.6 gms per Piece]",
              "name": "Peruvian Kiwi & Pine Nut Dim Sum",
              "image": "https://b.zmtcdn.com/data/dish_photos/59b/1d299537326b1e937768ec2e5a4c359b.jpeg",
              "dietarySlugs": [
                "veg"
              ]
            },
            {
              "id": "ctl_792270222",
              "desc": "(4 pcs / 6 pcs) Quinoa and vegetables with lemongrass and kaffir lime. (Contains gluten) [Protein: 1.63 gms per Piece]",
              "name": "Thai Herb Quinoa Dim Sum",
              "image": "https://b.zmtcdn.com/data/dish_photos/37e/2da54872afbbbacbf6d2c8f46100237e.jpeg",
              "dietarySlugs": [
                "veg"
              ]
            }
          ]
        },
        {
          "name": "Non-veg Dim Sum",
          "items": [
            {
              "id": "ctl_792270228",
              "desc": "(4 pcs / 6 pcs) Marinated chicken with fresh cilantro. (Contains gluten) [Protein: 2.45 gms per Piece]",
              "name": "Chicken Cilantro Dim Sum",
              "image": "https://b.zmtcdn.com/data/dish_photos/549/76d729c1c9862ab6315524ef1284d549.jpeg",
              "dietarySlugs": [
                "non-veg"
              ]
            },
            {
              "id": "ctl_792270229",
              "desc": "(4 pcs / 6 pcs) (Spicy) Chicken wontons in spicy soy chilli oil. (Contains gluten, soy, sesame, nuts) [Protein: 3.3 gms per Piece]",
              "name": "Chicken Wonton In Soy Chilli Oil",
              "image": "https://b.zmtcdn.com/data/dish_photos/244/8bf599824fb831c6676c160bee330244.jpeg",
              "dietarySlugs": [
                "non-veg"
              ]
            }
          ]
        }
      ]
    }
  ],
  "categoryCount": 11
}

Code examples

Menu
zpi-sdkrecommended
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("food:zomato", "menu", {
  "path": "/bangalore/yazu-pan-asian-supper-club-ashok-nagar-bangalore/order"
});
console.log(data);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/food:zomato/menu?path=%2Fbangalore%2Fyazu-pan-asian-supper-club-ashok-nagar-bangalore%2Forder" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

4 endpoints · plain text
GETMenu/v1/food:zomato/menuDaftar menu/dish restoran Zomato dari path hasil pencarian.

Parameters

pathstringrequired
Restaurant path or full URL from a search result (the url field)

Request

curl -X GET "https://api.zpi.web.id/v1/food:zomato/menu?path=%2Fbangalore%2Fyazu-pan-asian-supper-club-ashok-nagar-bangalore%2Forder" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "note": "Dish prices are not publicly available for this restaurant; only dish names, descriptions and images are returned.",
  "path": "/bangalore/yazu-pan-asian-supper-club-ashok-nagar-bangalore/order",
  "source": "zomato.com",
  "dishCount": 137,
  "categories": [
    {
      "name": "Sushi",
      "subCategories": [
        {
          "name": "Veg Sushi",
          "items": [
            {
              "id": "ctl_792270206",
              "desc": "(4 pcs / 8 pcs) (Spicy) A vegetable roll with avocado, spicy mayo, sesame and miso dressing. (Contains dairy, soy, sesame)",
              "name": "Autumn Sushi Roll",
              "image": "https://b.zmtcdn.com/data/dish_photos/92f/346de4d0346b03b44019e548461ac92f.jpeg",
              "dietarySlugs": [
                "veg"
              ]
            },
            {
              "id": "ctl_792270207",
              "desc": "(4 pcs / 8 pcs) Avocado roll topped with truffle mayo and crispy tanuki. (Contains sesame, dairy) [GF] [Protein: 0.65 gms per Piece]",
              "name": "Avocado Sensei Sushi Roll",
              "image": "https://b.zmtcdn.com/data/dish_photos/761/f4872d690eb5c5579e6b024fc511f761.jpeg",
              "dietarySlugs": [
                "veg"
              ]
            }
          ]
        },
        {
          "name": "Non-veg Sushi",
          "items": [
            {
              "id": "ctl_792270217",
              "desc": "(4 pcs / 8 pcs) Classic roll with crab stick, avocado, and tobiko. (Contains dairy, shellfish, fish) [Protein: 1.3 gms per Piece]",
              "name": "Non-veg Classic California Sushi Roll",
              "image": "https://b.zmtcdn.com/data/dish_photos/b60/3e0f061b1ff63d88fede8cb2e5059b60.jpeg",
              "dietarySlugs": [
                "non-veg"
              ]
            },
            {
              "id": "ctl_792270218",
              "desc": "(4 pcs / 8 pcs) Salmon and cream cheese roll with avocado served with wasabi, gari and soy sauce. (Contains dairy, fish)",
              "name": "Philadelphia Sushi Roll",
              "image": "https://b.zmtcdn.com/data/dish_photos/769/ed52bedd4e153e901e32480ab85d3769.jpeg",
              "dietarySlugs": [
                "non-veg"
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "Dim Sum & Bao",
      "subCategories": [
        {
          "name": "Veg Dim Sum",
          "items": [
            {
              "id": "ctl_792270221",
              "desc": "(4 pcs / 6 pcs) Pine nut and vegetable filling in a kiwi crystal skin. (Contains gluten) [Protein: 0.6 gms per Piece]",
              "name": "Peruvian Kiwi & Pine Nut Dim Sum",
              "image": "https://b.zmtcdn.com/data/dish_photos/59b/1d299537326b1e937768ec2e5a4c359b.jpeg",
              "dietarySlugs": [
                "veg"
              ]
            },
            {
              "id": "ctl_792270222",
              "desc": "(4 pcs / 6 pcs) Quinoa and vegetables with lemongrass and kaffir lime. (Contains gluten) [Protein: 1.63 gms per Piece]",
              "name": "Thai Herb Quinoa Dim Sum",
              "image": "https://b.zmtcdn.com/data/dish_photos/37e/2da54872afbbbacbf6d2c8f46100237e.jpeg",
              "dietarySlugs": [
                "veg"
              ]
            }
          ]
        },
        {
          "name": "Non-veg Dim Sum",
          "items": [
            {
              "id": "ctl_792270228",
              "desc": "(4 pcs / 6 pcs) Marinated chicken with fresh cilantro. (Contains gluten) [Protein: 2.45 gms per Piece]",
              "name": "Chicken Cilantro Dim Sum",
              "image": "https://b.zmtcdn.com/data/dish_photos/549/76d729c1c9862ab6315524ef1284d549.jpeg",
              "dietarySlugs": [
                "non-veg"
              ]
            },
            {
              "id": "ctl_792270229",
              "desc": "(4 pcs / 6 pcs) (Spicy) Chicken wontons in spicy soy chilli oil. (Contains gluten, soy, sesame, nuts) [Protein: 3.3 gms per Piece]",
              "name": "Chicken Wonton In Soy Chilli Oil",
              "image": "https://b.zmtcdn.com/data/dish_photos/244/8bf599824fb831c6676c160bee330244.jpeg",
              "dietarySlugs": [
                "non-veg"
              ]
            }
          ]
        }
      ]
    }
  ],
  "categoryCount": 11
}
GETUlasan/v1/food:zomato/reviewsUlasan/review restoran Zomato (paginated) dari path hasil pencarian.

Parameters

pathstringrequired
Restaurant path or full URL from a search result (the url field)
pagenumberoptional
Page (default 1, max 100)

Request

curl -X GET "https://api.zpi.web.id/v1/food:zomato/reviews?path=%2Fbangalore%2Fyazu-pan-asian-supper-club-ashok-nagar-bangalore%2Freviews&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "path": "/bangalore/yazu-pan-asian-supper-club-ashok-nagar-bangalore/reviews",
  "count": 5,
  "items": [
    {
      "rating": 1,
      "reviewId": 467654297,
      "userName": "Rajasekhar",
      "likeCount": 0,
      "reviewUrl": "https://www.zoma.to/vymqQKR",
      "timestamp": "5 days ago",
      "experience": "dining_order",
      "photoCount": 0,
      "ratingText": "Horrible",
      "ratingType": "DINING",
      "reviewText": "Taste is average, no Zomato discounts.",
      "commentCount": 2,
      "userProfileUrl": "https://www.zomato.com/users/rajasekhar-30335767",
      "userReviewsCount": 0,
      "userFollowersCount": 0
    },
    {
      "rating": 5,
      "reviewId": 467023300,
      "userName": "Shashank Raikar",
      "likeCount": 0,
      "reviewUrl": "https://www.zoma.to/MldvXGP",
      "timestamp": "6 days ago",
      "experience": "dining_order",
      "photoCount": 0,
      "ratingText": "Excellent",
      "ratingType": "DINING",
      "reviewText": "food was amazing,",
      "commentCount": 2,
      "userProfileUrl": "https://www.zomato.com/users/shashank-raikar-37338722",
      "userReviewsCount": 0,
      "userFollowersCount": 1
    },
    {
      "rating": 5,
      "reviewId": 460753601,
      "userName": "Shibani Muzumdar",
      "likeCount": 0,
      "reviewUrl": "https://www.zoma.to/rzRxBxa",
      "timestamp": "20 days ago",
      "experience": "dining_order",
      "photoCount": 0,
      "ratingText": "Excellent",
      "ratingType": "DINING",
      "reviewText": "The ambience, food, drinks, service was awesome. You should define try it.",
      "commentCount": 1,
      "userProfileUrl": "https://www.zomato.com/users/shibani-muzumdar-52983938",
      "userReviewsCount": 0,
      "userFollowersCount": 4
    },
    {
      "rating": 5,
      "reviewId": 460650103,
      "userName": "Anvesh Vagiri",
      "likeCount": 0,
      "reviewUrl": "https://www.zoma.to/owoBNGa",
      "timestamp": "20 days ago",
      "experience": "dining_order",
      "photoCount": 0,
      "ratingText": "Excellent",
      "ratingType": "DINING",
      "commentCount": 1,
      "userProfileUrl": "https://www.zomato.com/users/anvesh-vagiri-12509261",
      "userReviewsCount": 0,
      "userFollowersCount": 0
    },
    {
      "rating": 5,
      "reviewId": 457748085,
      "userName": "Varshitha",
      "likeCount": 0,
      "reviewUrl": "https://www.zoma.to/ADKXvGP",
      "timestamp": "27 days ago",
      "experience": "dining",
      "photoCount": 0,
      "ratingText": "Excellent",
      "ratingType": "DINING",
      "reviewText": "Loved the food! Everything we got tasted great and the service was top notch by Mr Adam :)",
      "commentCount": 1,
      "userProfileUrl": "https://www.zomato.com/users/varshitha-33011897",
      "userReviewsCount": 0,
      "userFollowersCount": 24
    }
  ],
  "source": "zomato.com",
  "hasMore": true,
  "nextPage": 2,
  "totalPages": 11,
  "totalReviews": 51
}
GETCari Restoran/v1/food:zomato/searchCari restoran Zomato berdasarkan kota dan cuisine/locality.

Parameters

citystringrequired
City slug (e.g. bangalore, mumbai, dubai, new-delhi)
cuisinestringoptional
Optional cuisine or locality slug to filter (e.g. chinese, pizza, indiranagar-restaurants)
pagenumberoptional
Page (default 1, max 50)

Request

curl -X GET "https://api.zpi.web.id/v1/food:zomato/search?city=bangalore&cuisine=chinese&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "city": "bangalore",
  "page": 1,
  "count": 9,
  "items": [
    {
      "url": "https://www.zomato.com/bangalore/yazu-pan-asian-supper-club-ashok-nagar-bangalore/info?contextual_menu_params=eyJkaXNoX3NlYXJjaCI6eyJ0aXRsZSI6IkJlc3QgaW4gQ2hpbmVzZSIsImRpc2hfaWRzIj…",
      "name": "Yazu Pan Asian Supper Club",
      "image": "https://b.zmtcdn.com/data/pictures/6/22311906/133b5347086186c39a26a8840a93b109_o2_featured_v2.jpg",
      "resId": 22311906,
      "votes": 266,
      "rating": 4.4,
      "timing": "Opens at 7pm",
      "address": "Marks Square, Shanthala Nagar, St. Marks Road Ashok Nagar, Bangalore",
      "costText": "₹2,500 for two",
      "cuisines": [
        "Asian",
        "Chinese",
        "Sushi"
      ],
      "distance": "738 m",
      "locality": "Ashok Nagar, Bangalore",
      "costForTwo": "₹2,500 for two",
      "isPromoted": true,
      "ratingText": "Very Good"
    },
    {
      "url": "https://www.zomato.com/bangalore/cbd-central-bar-district-mg-road-bangalore/info?contextual_menu_params=eyJkaXNoX3NlYXJjaCI6eyJ0aXRsZSI6IkJlc3QgaW4gQ2hpbmVzZSIsImRpc2hfaWRzIjpbXSwi…",
      "name": "CBD- Central Bar District",
      "image": "https://b.zmtcdn.com/data/pictures/6/21913226/f56b229c33a1b8219a780520f54f04e4_o2_featured_v2.jpg",
      "resId": 21913226,
      "votes": 3018,
      "rating": 4.4,
      "address": "3, Church St, Shanthala Nagar, MSR, MG Road, Bangalore",
      "costText": "₹1,200 for two",
      "cuisines": [
        "North Indian",
        "Chinese",
        "South Indian"
      ],
      "distance": "1.4 km",
      "locality": "MG Road, Bangalore",
      "costForTwo": "₹1,200 for two",
      "isPromoted": true,
      "ratingText": "Very Good"
    },
    {
      "url": "https://www.zomato.com/bangalore/cha-hong-kong-eating-house-church-street-bangalore/info?contextual_menu_params=eyJkaXNoX3NlYXJjaCI6eyJ0aXRsZSI6IkJlc3QgaW4gQ2hpbmVzZSIsImRpc2hfaWRz…",
      "name": "Cha Hong Kong Eating House",
      "image": "https://b.zmtcdn.com/data/pictures/3/22243603/35f52ffd753dec3daf66e06b5f815f7c_o2_featured_v2.jpg",
      "resId": 22243603,
      "votes": 992,
      "rating": 4.4,
      "address": "76-20-50, First Floor, Unit Number F3, F4, F5 and F6, Sobha, Church Street, Bangalore",
      "costText": "₹2,700 for two",
      "cuisines": [
        "Chinese",
        "Sushi",
        "Asian"
      ],
      "distance": "963 m",
      "locality": "Church Street, Bangalore",
      "costForTwo": "₹2,700 for two",
      "isPromoted": true,
      "ratingText": "Very Good"
    }
  ],
  "source": "zomato.com",
  "cuisine": "chinese",
  "hasMore": false,
  "heading": "Chinese Restaurants in Bengaluru",
  "totalResults": 6854
}
GETDetail Restoran/v1/food:zomato/detailDetail restoran Zomato (rating, alamat, koordinat, jam buka, highlights) dari path hasil pencarian.

Parameters

pathstringrequired
Restaurant path or full URL from a search result (the url field)

Request

curl -X GET "https://api.zpi.web.id/v1/food:zomato/detail?path=%2Fbangalore%2Fyazu-pan-asian-supper-club-ashok-nagar-bangalore%2Finfo" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "url": "https://www.zomato.com/bangalore/yazu-pan-asian-supper-club-ashok-nagar-bangalore",
  "city": "Bangalore",
  "name": "Yazu Pan Asian Supper Club",
  "resId": 22311906,
  "votes": 266,
  "mapUrl": "https://maps.zomato.com/php/staticmap?center=12.9723110000,77.6011510000&maptype=zomato&markers=12.9723110000,77.6011510000,pin_res32&sensor=false&scale=2&zoom=16&language=en&size=240x150&size=400x240",
  "phones": [
    "+917411994448",
    "+917411199404",
    "+917411994143"
  ],
  "rating": 4.4,
  "source": "zomato.com",
  "timing": "Opens at 7pm",
  "address": "Marks Square, Shanthala Nagar, St. Marks Road Ashok Nagar, Bangalore",
  "country": "India",
  "zipcode": "560001",
  "cuisines": [
    "Asian",
    "Chinese",
    "Sushi",
    "Thai",
    "Korean",
    "Desserts",
    "Beverages"
  ],
  "latitude": 12.972311,
  "locality": "Ashok Nagar, Bangalore",
  "longitude": 77.601151,
  "thumbnail": "https://b.zmtcdn.com/images/res_avatar_476_320_1x_new.png",
  "highlights": [
    "Lunch",
    "Dinner",
    "Delivery",
    "Takeout Available",
    "Full bar available",
    "Stags allowed",
    "Offers candlelit setting",
    "Parking available"
  ],
  "ratingText": "Very Good",
  "statusText": "Closed for dining",
  "isPermClosed": false,
  "isTempClosed": false,
  "openingHours": [
    {
      "days": "Mon-Sun",
      "hours": "12noon – 4pm, 7pm – 1am"
    }
  ],
  "ratingsByType": {
    "dining": {
      "label": "DINING",
      "rating": 4.4,
      "reviewCount": 266
    }
  },
  "isDeliveryOnly": false
}

Related APIs

More in food

GoFood

food/gofood

Cari restoran GoFood per kota/area & kategori masakan (data SSR). Catatan: detail menu per-resto tidak tersedia (di-gate WAF upstream).

162 calls·5m cache

Open Food Facts

food/openfoodfacts

Retrieve product information, ingredients, and nutritional data from packaged foods.

11 calls·5m cache

Punch Drink

food/punchdrink

Cocktail & drink recipe scraper untuk Punch Drink — cari resep cocktail, ambil detail (bahan, cara, garnish), dan koleksi terbaru.

6 calls·10m cache

Dapur Umami

food/dapurumami

Scraper resep Dapur Umami — kumpulan resep masakan Indonesia, pencarian by keyword, detail resep (bahan, langkah, durasi, porsi).

6 calls·10m cache

Resep Koki

food/resepkoki

Scraper resep masakan Indonesia dari Resep Koki — pencarian, detail resep lengkap (bahan, langkah, durasi), dan resep terbaru.

7 calls·10m cache

Cookpad

food/cookpad

Cookpad recipe scraper — cari resep berdasarkan kata kunci, ambil detail resep, bahan, langkah dan waktu.

6 calls·1h cache
Browse APIsPricingDocsMCP serverGet an API key
zapi.One key, one response shape.
TermsPrivacyCookiesAUPRefunds© 2026