> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /tabelog/restaurants

> Get full Tabelog (食べログ) restaurant details by {pref}/A{area1}/A{area2}/{id} (or restaurant URL): name, address, geo, cuisines/genres, access directions, price range, rating/score, review and saved counts, nearest station, budgets, awards, opening hours, payment methods, service charge, seats, amenity features and remarks.

**Price:** 5 credits

**⚠️ Common errors:** 412: Restaurant not found (well-formed id but the restaurant page does not exist)



## OpenAPI

````yaml /openapi/local-places.json post /api/tabelog/restaurants
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/tabelog/restaurants:
    post:
      tags:
        - /tabelog
      summary: /tabelog/restaurants
      description: >-
        Get full Tabelog (食べログ) restaurant details by
        {pref}/A{area1}/A{area2}/{id} (or restaurant URL): name, address, geo,
        cuisines/genres, access directions, price range, rating/score, review
        and saved counts, nearest station, budgets, awards, opening hours,
        payment methods, service charge, seats, amenity features and remarks.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Restaurant not found (well-formed id but the
        restaurant page does not exist)
      operationId: __api_tabelog_restaurants_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TabelogRestaurantsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TabelogRestaurant'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TabelogRestaurantsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        restaurant:
          type: string
          minLength: 1
      type: object
      required:
        - restaurant
    TabelogRestaurant:
      properties:
        '@type':
          type: string
          default: TabelogRestaurant
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/TabelogRestaurantAddress'
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        price_range:
          anyOf:
            - type: string
            - type: 'null'
        cuisines:
          items:
            type: string
          type: array
          default: []
        genres:
          items:
            type: string
          type: array
          default: []
        access:
          anyOf:
            - type: string
            - type: 'null'
        telephone:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        score:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        saved_count:
          anyOf:
            - type: integer
            - type: 'null'
        nearest_station:
          anyOf:
            - type: string
            - type: 'null'
        budget_dinner:
          anyOf:
            - type: string
            - type: 'null'
        budget_lunch:
          anyOf:
            - type: string
            - type: 'null'
        awards:
          items:
            type: string
          type: array
          default: []
        is_reservable:
          anyOf:
            - type: boolean
            - type: 'null'
        open_hours:
          anyOf:
            - type: string
            - type: 'null'
        payment_methods:
          items:
            type: string
          type: array
          default: []
        seats:
          anyOf:
            - type: string
            - type: 'null'
        has_private_room:
          anyOf:
            - type: boolean
            - type: 'null'
        has_charter:
          anyOf:
            - type: boolean
            - type: 'null'
        is_non_smoking:
          anyOf:
            - type: boolean
            - type: 'null'
        has_parking:
          anyOf:
            - type: boolean
            - type: 'null'
        service_charge:
          anyOf:
            - type: string
            - type: 'null'
        remarks:
          anyOf:
            - type: string
            - type: 'null'
        space_features:
          items:
            type: string
          type: array
          default: []
        drink_features:
          items:
            type: string
          type: array
          default: []
        food_features:
          items:
            type: string
          type: array
          default: []
        usage_scenes:
          items:
            type: string
          type: array
          default: []
        services:
          items:
            type: string
          type: array
          default: []
        homepage_url:
          anyOf:
            - type: string
            - type: 'null'
        social_links:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    TabelogRestaurantAddress:
      properties:
        '@type':
          type: string
          default: TabelogRestaurantAddress
        street:
          anyOf:
            - type: string
            - type: 'null'
        locality:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````