> ## 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/search

> Search Tabelog (食べログ) restaurants by keyword and/or genre with optional filters: prefecture, budget range, private room, credit card, parking and sort order. Returns restaurant cards with name, rating, review and saved counts, area/station, genres, budgets and images.

**Price:** 5 credits per 20 results



## OpenAPI

````yaml /openapi/local-places.json post /api/tabelog/restaurants/search
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/search:
    post:
      tags:
        - /tabelog
      summary: /tabelog/restaurants/search
      description: >-
        Search Tabelog (食べログ) restaurants by keyword and/or genre with optional
        filters: prefecture, budget range, private room, credit card, parking
        and sort order. Returns restaurant cards with name, rating, review and
        saved counts, area/station, genres, budgets and images.


        **Price:** 5 credits per 20 results
      operationId: __api_tabelog_restaurants_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TabelogSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TabelogSearchCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TabelogSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          anyOf:
            - type: string
            - type: 'null'
        pref:
          anyOf:
            - type: string
            - type: 'null'
        genre:
          anyOf:
            - $ref: '#/components/schemas/TabelogGenre'
            - type: 'null'
        budget_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        budget_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        budget_for_lunch:
          type: boolean
          default: false
        private_room:
          type: boolean
          default: false
        card_ok:
          type: boolean
          default: false
        parking:
          type: boolean
          default: false
        sort:
          $ref: '#/components/schemas/TabelogSort'
          default: standard
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    TabelogSearchCard:
      properties:
        '@type':
          type: string
          default: TabelogSearchCard
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        saved_count:
          anyOf:
            - type: integer
            - type: 'null'
        area:
          anyOf:
            - type: string
            - type: 'null'
        station:
          anyOf:
            - type: string
            - type: 'null'
        genres:
          items:
            type: string
          type: array
          default: []
        budget_dinner:
          anyOf:
            - type: string
            - type: 'null'
        budget_lunch:
          anyOf:
            - type: string
            - type: 'null'
        pr_title:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    TabelogGenre:
      type: string
      enum:
        - RC0103
        - RC0104
        - RC0105
        - RC0106
        - RC0107
        - RC0108
        - RC0109
        - RC0111
        - RC0121
        - RC0123
        - RC0124
        - RC0125
        - RC0201
        - RC0209
        - RC0219
        - RC0220
        - RC0301
        - RC0303
        - RC0305
        - RC0306
        - RC0307
        - RC0308
        - RC0309
        - RC0310
        - RC0402
        - RC0403
        - RC0404
        - RC0411
        - RC0412
        - RC0499
        - RC1201
        - RC1203
        - RC1205
        - RC1302
        - RC1401
        - RC1402
        - RC1404
        - RC1406
        - RC1408
        - RC2101
        - RC2102
        - RC2103
        - RC2104
        - RC2105
        - RC9801
        - RC9802
        - RC9803
        - RC9804
        - RC9805
        - RC9806
        - RC9807
        - RC9808
        - RC9809
        - RC9811
        - RC9812
        - RC02
        - RC04
        - RC13
    TabelogSort:
      type: string
      enum:
        - standard
        - rating
        - review_count
        - newest
    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

````