Skip to main content
POST
/
tabelog
/
reviews
cURL
curl --request POST \
  --url https://api.hobbo.ai/tabelog/reviews \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>",
  "reviews_to_fetch": 123,
  "sort_type": null,
  "filter_by": 0,
  "sync_date": "<string>",
  "is_text_formatted": true,
  "pagination_data": {}
}
'
{
  "all_reviews": [
    {
      "query": "<string>",
      "review_id": "<string>",
      "author_name": "<string>",
      "author_profile_url": "<string>",
      "author_profile_image_url": "<string>",
      "author_profile_image_url_org": "<string>",
      "author_posts_count": 123,
      "author_followers_count": 123,
      "author_dining_time": "<string>",
      "review_date": "<string>",
      "review_title": "<string>",
      "review_text": "<string>",
      "review_rating": 123,
      "visit_count": "<string>",
      "review_media": [
        {
          "url": "<string>",
          "thumbnail_url": "<string>",
          "media_type": "<string>"
        }
      ],
      "rating_details": {},
      "review_link": "<string>"
    }
  ],
  "extra_information": {
    "extra_information": {
      "pagination_data": {}
    },
    "total_review_count": 123,
    "total_review_count_list": [
      123
    ]
  },
  "message": "<string>"
}

Body

application/json

Tabelog review scraping parameters

query
string
required

Provide the Tabelog restaurant or profile URL.

reviews_to_fetch
number | null

Number of reviews to fetch (default: all reviews, or within 30-second timeout).

sort_type
enum<string> | null

Sorting option for the reviews (default preserves platform order).

Available options:
visit,
filter_by
enum<integer>
default:0

Rating filter applied to the fetched reviews.

Available options:
0,
1,
2
sync_date
string | null

Fetches reviews posted on a specific date using format: YYYY-MM-DD.

is_text_formatted
boolean
default:true

Returns the review text with visual formatting preserved.

pagination_data
object

Pagination metadata returned by previous requests.

Response

Reviews fetched successfully

all_reviews
object[]

Array of fetched reviews

extra_information
object
message
string

Status message about the review extraction