Skip to main content
POST
/
api
/
zomato
/
restaurants
/
reviews
/zomato/restaurants/reviews
curl --request POST \
  --url https://api.anysite.io/api/zomato/restaurants/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "restaurant": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "ZomatoReview",
    "text": "<string>",
    "rating": 123,
    "rating_type": "<string>",
    "experience": "<string>",
    "relative_time": "<string>",
    "like_count": 123,
    "comment_count": 123,
    "review_url": "<string>",
    "photos": [],
    "author": {
      "@type": "ZomatoReviewUser",
      "id": 123,
      "name": "<string>",
      "image": "<string>",
      "profile_url": "<string>",
      "follower_count": 123
    }
  }
]

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
Example:

"bangalore/ishaara-residency-road-bangalore"

count
integer
required

Max number of reviews to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:ZomatoReview
text
string | null
rating
number | null
rating_type
string | null
experience
string | null
relative_time
string | null
like_count
integer | null
comment_count
integer | null
review_url
string | null
photos
string[]
author
object