Skip to main content
POST
/
api
/
zomato
/
restaurants
/zomato/restaurants
curl --request POST \
  --url https://api.anysite.io/api/zomato/restaurants \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "restaurant": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "url": "<string>",
    "name": "<string>",
    "@type": "ZomatoRestaurant",
    "alias": "<string>",
    "cuisines": [],
    "rating": 123,
    "vote_count": 123,
    "rating_dining": 123,
    "rating_dining_count": 123,
    "rating_delivery": 123,
    "rating_delivery_count": 123,
    "image": "<string>",
    "images": [],
    "thumbnail": "<string>",
    "photo_menus": [],
    "top_dishes": [],
    "popular_for": [],
    "known_for": "<string>",
    "static_map_url": "<string>",
    "cost_for_two": 123,
    "cost_for_two_text": "<string>",
    "accepted_payments": "<string>",
    "currency": "INR",
    "address": "<string>",
    "locality": "<string>",
    "city": "<string>",
    "city_id": 123,
    "country": "<string>",
    "country_id": 123,
    "zipcode": "<string>",
    "latitude": 123,
    "longitude": 123,
    "phones": [],
    "timing": "<string>",
    "opening_hours": [],
    "status": "<string>",
    "is_delivery_only": false,
    "is_permanently_closed": false,
    "is_temporarily_closed": false,
    "highlights": [],
    "offers": [],
    "chain_url": "<string>",
    "bookmark_count": 123,
    "share_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
restaurant
string
required

Restaurant as a '{city}/{slug}' path or a full restaurant URL

Minimum string length: 1
Examples:

"bangalore/ishaara-residency-road-bangalore"

"https://www.zomato.com/bangalore/ishaara-residency-road-bangalore/info"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
url
string
required
name
string
required
@type
string
default:ZomatoRestaurant
alias
string | null
cuisines
string[]
rating
number | null
vote_count
integer | null
rating_dining
number | null
rating_dining_count
integer | null
rating_delivery
number | null
rating_delivery_count
integer | null
image
string | null
images
string[]
thumbnail
string | null
photo_menus
object[]
top_dishes
string[]
known_for
string | null
static_map_url
string | null
cost_for_two
number | null
cost_for_two_text
string | null
accepted_payments
string | null
currency
string
default:INR
address
string | null
locality
string | null
city
string | null
city_id
integer | null
country
string | null
country_id
integer | null
zipcode
string | null
latitude
number | null
longitude
number | null
phones
string[]
timing
string | null
opening_hours
object[]
status
string | null
is_delivery_only
boolean
default:false
is_permanently_closed
boolean
default:false
is_temporarily_closed
boolean
default:false
highlights
string[]
offers
object[]
chain_url
string | null
bookmark_count
integer | null
share_url
string | null