Skip to main content
POST
/
api
/
tabelog
/
restaurants
/
reviews
/tabelog/restaurants/reviews
curl --request POST \
  --url https://api.anysite.io/api/tabelog/restaurants/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "restaurant": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@tabelog_review",
    "author": "<string>",
    "author_url": "<string>",
    "author_review_count": 123,
    "author_follower_count": 123,
    "rating": 123,
    "meal": "<string>",
    "breakdown": {
      "@type": "@tabelog_review_breakdown",
      "food": 123,
      "service": 123,
      "atmosphere": 123,
      "cost_performance": 123,
      "drinks": 123
    },
    "payment_band": "<string>",
    "party_size": 123,
    "visit_number": 123,
    "visit_date": "<string>",
    "title": "<string>",
    "text": "<string>",
    "like_count": 123,
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
restaurant
string
required

Tabelog restaurant as {pref}/A{area1}/A{area2}/{id} or a full restaurant URL

Minimum string length: 1
Examples:

"tokyo/A1301/A130101/13002457"

"https://tabelog.com/tokyo/A1301/A130101/13002457/"

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:@tabelog_review
author
string | null
author_url
string | null
author_review_count
integer | null
author_follower_count
integer | null
rating
number | null
meal
string | null
breakdown
TabelogReviewBreakdown · object
payment_band
string | null
party_size
integer | null
visit_number
integer | null
visit_date
string | null
title
string | null
text
string | null
like_count
integer | null
images
string[]