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

> Get full Gurunavi (楽天ぐるなび) restaurant details by id (e.g. 'g720500') or restaurant URL: name, address, geo, cuisines/genres, description, telephone/fax, price range and average budgets, access directions, opening hours, closed days, seats, banquet/charter capacity, payment methods, electronic money, amenities, private rooms, usage scenes, foreign language support, menu services (all-you-can-eat/drink, vegetarian, birthday perks), lunch services, Wi-Fi/power, parking, child-friendly facilities, pets, takeout, dress code, restrooms, other facilities, selling points, shop topics, cancellation policy, homepage and reservation links.

**Price:** 5 credits

**💡 AI Hint:** Fetch a single Gurunavi (楽天ぐるなび) restaurant by id (e.g. 'g720500') or a full restaurant URL. Returns name, image/images, cuisines, genres, description, telephone, fax_number, address (street/locality/region/postal_code/country), latitude/longitude, price_range, budget_average, budget_banquet, access, open_hours, closed_days, is_reservable, payment_methods, electronic_money, service_charge, seats, banquet_max, charter_capacity, amenities, has_private_room, private_rooms, is_smoking_allowed, usage_scenes, foreign_languages, menu_services (all-you-can-eat/drink, vegetarian, birthday perks), lunch_services, wifi_power, parking, kids, pets, takeout, dress_code, restroom, other_facilities, issues_invoice, selling_points, topics, cancellation_policy, homepage_url, reserve_url and map_url.

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



## OpenAPI

````yaml /openapi-filtered.json post /api/gurunavi/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/gurunavi/restaurants:
    post:
      tags:
        - /gurunavi
      summary: /gurunavi/restaurants
      description: >-
        Get full Gurunavi (楽天ぐるなび) restaurant details by id (e.g. 'g720500') or
        restaurant URL: name, address, geo, cuisines/genres, description,
        telephone/fax, price range and average budgets, access directions,
        opening hours, closed days, seats, banquet/charter capacity, payment
        methods, electronic money, amenities, private rooms, usage scenes,
        foreign language support, menu services (all-you-can-eat/drink,
        vegetarian, birthday perks), lunch services, Wi-Fi/power, parking,
        child-friendly facilities, pets, takeout, dress code, restrooms, other
        facilities, selling points, shop topics, cancellation policy, homepage
        and reservation links.


        **Price:** 5 credits


        **💡 AI Hint:** Fetch a single Gurunavi (楽天ぐるなび) restaurant by id (e.g.
        'g720500') or a full restaurant URL. Returns name, image/images,
        cuisines, genres, description, telephone, fax_number, address
        (street/locality/region/postal_code/country), latitude/longitude,
        price_range, budget_average, budget_banquet, access, open_hours,
        closed_days, is_reservable, payment_methods, electronic_money,
        service_charge, seats, banquet_max, charter_capacity, amenities,
        has_private_room, private_rooms, is_smoking_allowed, usage_scenes,
        foreign_languages, menu_services (all-you-can-eat/drink, vegetarian,
        birthday perks), lunch_services, wifi_power, parking, kids, pets,
        takeout, dress_code, restroom, other_facilities, issues_invoice,
        selling_points, topics, cancellation_policy, homepage_url, reserve_url
        and map_url.


        **⚠️ Common errors:** 412: Restaurant not found (well-formed id but the
        restaurant page does not exist)
      operationId: __api_gurunavi_restaurants_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GurunaviRestaurantsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GurunaviRestaurant'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GurunaviRestaurantsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        restaurant:
          type: string
          minLength: 1
          description: Gurunavi restaurant id (e.g. 'g720500') or a full restaurant URL
          examples:
            - g720500
            - https://r.gnavi.co.jp/g720500/
      type: object
      required:
        - restaurant
    GurunaviRestaurant:
      properties:
        '@type':
          type: string
          default: GurunaviRestaurant
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        cuisines:
          items:
            type: string
          type: array
          default: []
        genres:
          items:
            type: string
          type: array
          default: []
        description:
          anyOf:
            - type: string
            - type: 'null'
        telephone:
          anyOf:
            - type: string
            - type: 'null'
        fax_number:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/GurunaviRestaurantAddress'
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        price_range:
          anyOf:
            - type: string
            - type: 'null'
        budget_average:
          anyOf:
            - type: string
            - type: 'null'
        budget_banquet:
          anyOf:
            - type: string
            - type: 'null'
        access:
          anyOf:
            - type: string
            - type: 'null'
        open_hours:
          anyOf:
            - type: string
            - type: 'null'
        closed_days:
          items:
            type: string
          type: array
          default: []
        is_reservable:
          anyOf:
            - type: boolean
            - type: 'null'
        payment_methods:
          items:
            type: string
          type: array
          default: []
        electronic_money:
          items:
            type: string
          type: array
          default: []
        service_charge:
          anyOf:
            - type: string
            - type: 'null'
        seats:
          anyOf:
            - type: string
            - type: 'null'
        banquet_max:
          anyOf:
            - type: string
            - type: 'null'
        charter_capacity:
          anyOf:
            - type: string
            - type: 'null'
        amenities:
          items:
            type: string
          type: array
          default: []
        has_private_room:
          anyOf:
            - type: boolean
            - type: 'null'
        private_rooms:
          items:
            type: string
          type: array
          default: []
        is_smoking_allowed:
          anyOf:
            - type: boolean
            - type: 'null'
        usage_scenes:
          items:
            type: string
          type: array
          default: []
        foreign_languages:
          items:
            type: string
          type: array
          default: []
        menu_services:
          items:
            type: string
          type: array
          default: []
        lunch_services:
          items:
            type: string
          type: array
          default: []
        wifi_power:
          items:
            type: string
          type: array
          default: []
        parking:
          anyOf:
            - type: string
            - type: 'null'
        kids:
          items:
            type: string
          type: array
          default: []
        pets:
          anyOf:
            - type: string
            - type: 'null'
        takeout:
          anyOf:
            - type: string
            - type: 'null'
        dress_code:
          items:
            type: string
          type: array
          default: []
        restroom:
          items:
            type: string
          type: array
          default: []
        other_facilities:
          items:
            type: string
          type: array
          default: []
        issues_invoice:
          anyOf:
            - type: boolean
            - type: 'null'
        selling_points:
          items:
            type: string
          type: array
          default: []
        topics:
          items:
            type: string
          type: array
          default: []
        cancellation_policy:
          anyOf:
            - type: string
            - type: 'null'
        homepage_url:
          anyOf:
            - type: string
            - type: 'null'
        reserve_url:
          anyOf:
            - type: string
            - type: 'null'
        map_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GurunaviRestaurantAddress:
      properties:
        '@type':
          type: string
          default: GurunaviRestaurantAddress
        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

````