Skip to main content
POST
/
api
/
gurunavi
/
restaurants
/
reviews
/gurunavi/restaurants/reviews
curl --request POST \
  --url https://api.anysite.io/api/gurunavi/restaurants/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "restaurant": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "GurunaviReview",
    "author": "<string>",
    "scene": "<string>",
    "rating": 123,
    "menu_item": "<string>",
    "text": "<string>",
    "visit_date": "<string>",
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
restaurant
string
required

Gurunavi restaurant id (e.g. 'g720500') or a full restaurant URL

Minimum string length: 1
Examples:

"g720500"

"https://r.gnavi.co.jp/g720500/"

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
string
required
@type
string
default:GurunaviReview
author
string | null
scene
string | null
rating
number | null
menu_item
string | null
text
string | null
visit_date
string | null
image
string | null