> ## 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.

# /gurunavi/restaurants/search

> Search Gurunavi (楽天ぐるなび) restaurants by keyword, area, cuisine genre and こだわり filters (condition / usage scene / smoking / business hours), with optional budget range, private room, seat-reservable, reservation-type and coupon filters. Returns restaurant cards with name, category, dinner/lunch budgets, access, course plans, photos with metadata and promo flags.

**Price:** 20 credits per 30 results

**💡 AI Hint:** Search Gurunavi (楽天ぐるなび) restaurants. Provide at least one of keyword, genre, a こだわり filter (condition / usage_scene / smoking / business_hours — at most ONE, they share a single filter slot), coupon, or a specific area (slug like 'tokyo', 'osaka'; 'jp' = nationwide). Optional: budget_min/budget_max (JPY per person, dinner), private_room, seat_reservable, reservation (course_reserve/seat_reserve), coupon (regular/reserve/secret/takeout); sort by standard or point. Each result has id, url, name, name_sub, category, budget_dinner, budget_lunch, access, is_suspended, sanitary_measure_count, attractive_points, image, photos (image/type/summary/price/space_name) and courses (name/price/discount_price/dish_count).



## OpenAPI

````yaml /openapi-filtered.json post /api/gurunavi/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/gurunavi/restaurants/search:
    post:
      tags:
        - /gurunavi
      summary: /gurunavi/restaurants/search
      description: >-
        Search Gurunavi (楽天ぐるなび) restaurants by keyword, area, cuisine genre and
        こだわり filters (condition / usage scene / smoking / business hours), with
        optional budget range, private room, seat-reservable, reservation-type
        and coupon filters. Returns restaurant cards with name, category,
        dinner/lunch budgets, access, course plans, photos with metadata and
        promo flags.


        **Price:** 20 credits per 30 results


        **💡 AI Hint:** Search Gurunavi (楽天ぐるなび) restaurants. Provide at least
        one of keyword, genre, a こだわり filter (condition / usage_scene / smoking
        / business_hours — at most ONE, they share a single filter slot),
        coupon, or a specific area (slug like 'tokyo', 'osaka'; 'jp' =
        nationwide). Optional: budget_min/budget_max (JPY per person, dinner),
        private_room, seat_reservable, reservation
        (course_reserve/seat_reserve), coupon (regular/reserve/secret/takeout);
        sort by standard or point. Each result has id, url, name, name_sub,
        category, budget_dinner, budget_lunch, access, is_suspended,
        sanitary_measure_count, attractive_points, image, photos
        (image/type/summary/price/space_name) and courses
        (name/price/discount_price/dish_count).
      operationId: __api_gurunavi_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/GurunaviSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GurunaviSearchCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GurunaviSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        keyword:
          anyOf:
            - type: string
            - type: 'null'
          description: Search keyword
          examples:
            - 焼肉
            - 寿司
            - ラーメン
        area:
          type: string
          description: Area slug to scope the search ('jp' for nationwide)
          default: jp
          examples:
            - jp
            - tokyo
            - osaka
        genre:
          anyOf:
            - $ref: '#/components/schemas/GurunaviGenre'
            - type: 'null'
          description: Cuisine genre filter
        condition:
          anyOf:
            - $ref: '#/components/schemas/GurunaviCondition'
            - type: 'null'
          description: Facility / feature condition filter
        usage_scene:
          anyOf:
            - $ref: '#/components/schemas/GurunaviUsageScene'
            - type: 'null'
          description: Usage occasion filter
        smoking:
          anyOf:
            - $ref: '#/components/schemas/GurunaviSmoking'
            - type: 'null'
          description: Smoking policy filter
        business_hours:
          anyOf:
            - $ref: '#/components/schemas/GurunaviBusinessHours'
            - type: 'null'
          description: Business hours filter
        coupon:
          anyOf:
            - $ref: '#/components/schemas/GurunaviCoupon'
            - type: 'null'
          description: Restrict to restaurants offering a coupon type
        budget_min:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Minimum per-person dinner budget (JPY)
        budget_max:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
          description: Maximum per-person dinner budget (JPY)
        private_room:
          type: boolean
          description: Only restaurants with a private room
          default: false
        seat_reservable:
          type: boolean
          description: Only restaurants that accept online seat reservations
          default: false
        reservation:
          anyOf:
            - $ref: '#/components/schemas/GurunaviReservation'
            - type: 'null'
          description: Restrict to course-reservable or seat-reservable restaurants
        sort:
          $ref: '#/components/schemas/GurunaviSort'
          description: Sort order
          default: standard
        count:
          type: integer
          minimum: 1
          description: Max number of results to return
      type: object
      required:
        - count
    GurunaviSearchCard:
      properties:
        '@type':
          type: string
          default: GurunaviSearchCard
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        name_sub:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        budget_dinner:
          anyOf:
            - type: integer
            - type: 'null'
        budget_lunch:
          anyOf:
            - type: integer
            - type: 'null'
        access:
          anyOf:
            - type: string
            - type: 'null'
        is_suspended:
          anyOf:
            - type: boolean
            - type: 'null'
        sanitary_measure_count:
          anyOf:
            - type: integer
            - type: 'null'
        attractive_points:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        photos:
          items:
            $ref: '#/components/schemas/GurunaviCardPhoto'
          type: array
          default: []
        courses:
          items:
            $ref: '#/components/schemas/GurunaviCardCourse'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GurunaviGenre:
      type: string
      enum:
        - izakaya
        - japanese
        - sushi
        - roastmeat
        - western
        - buffet
        - curry
        - chinese
        - continental
        - hotpots
        - ethnic
        - noodle
        - beerandcuisine
        - cafe
        - entertainment
        - casual
        - others
    GurunaviCondition:
      type: string
      enum:
        - private_room
        - parking
        - kids_ok
        - pets_ok
        - all_you_can_eat
        - all_you_can_drink
        - birthday_perk
        - takeout
        - night_view
        - solo_friendly
        - large_banquet
    GurunaviUsageScene:
      type: string
      enum:
        - girls_party
        - date
        - anniversary
        - reunion
        - welcome_party
        - farewell_party
        - celebration
        - family
        - daytime_business
        - evening_business
        - after_party
        - group_date
    GurunaviSmoking:
      type: string
      enum:
        - non_smoking
        - smoking_allowed
    GurunaviBusinessHours:
      type: string
      enum:
        - open_24h
        - sunday_open
    GurunaviCoupon:
      type: string
      enum:
        - regular
        - reserve
        - secret
        - takeout
    GurunaviReservation:
      type: string
      enum:
        - course_reserve
        - seat_reserve
    GurunaviSort:
      type: string
      enum:
        - standard
        - point
    GurunaviCardPhoto:
      properties:
        '@type':
          type: string
          default: GurunaviCardPhoto
        image:
          type: string
        type:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: string
            - type: 'null'
        space_name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - image
    GurunaviCardCourse:
      properties:
        '@type':
          type: string
          default: GurunaviCardCourse
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        discount_price:
          anyOf:
            - type: integer
            - type: 'null'
        dish_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_seat_only:
          anyOf:
            - type: boolean
            - 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

````