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

# /hotpepper/restaurants

> Get full Hot Pepper Gourmet (ホットペッパーグルメ) restaurant details by id (strJ{id} or J{id}, or restaurant URL): name, address, geo, telephone, genres, area, nearest station, access directions, rating, review/course/coupon counts, dinner/lunch budgets, opening hours, closed days, net reservation, point and smart payment, accepted cards/e-money/QR payments, smoking policy, seats and banquet capacity, private room/tatami/counter/terrace/charter/parking/Wi-Fi amenities, all-you-can-drink/eat, drink features, visit scenes and remarks.

**Price:** 5 credits

**💡 AI Hint:** Fetch a single Hot Pepper Gourmet (ホットペッパーグルメ) restaurant by id ('J003433499' or 'strJ003433499') or a full restaurant URL. Returns name, catch_copy, address (street/locality/region/country), latitude/longitude, telephone, genres, area, nearest_station, access, rating, review_count, course_count, coupon_count, budget_dinner/budget_lunch, budget_note, open_hours, closed_days, is_net_reservable, point_use, smart_pay, credit_cards, e_money, qr_payments, smoking, total_seats, max_banquet_capacity, amenity flags (has_private_room/has_tatami/has_counter/has_terrace/has_charter/has_wifi/has_parking/...), has_all_you_can_drink/eat, drink_features, kids_friendly, celebration_ok, shop_features, remarks and visit scenes (name + percentage).

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



## OpenAPI

````yaml /openapi-filtered.json post /api/hotpepper/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/hotpepper/restaurants:
    post:
      tags:
        - /hotpepper
      summary: /hotpepper/restaurants
      description: >-
        Get full Hot Pepper Gourmet (ホットペッパーグルメ) restaurant details by id
        (strJ{id} or J{id}, or restaurant URL): name, address, geo, telephone,
        genres, area, nearest station, access directions, rating,
        review/course/coupon counts, dinner/lunch budgets, opening hours, closed
        days, net reservation, point and smart payment, accepted
        cards/e-money/QR payments, smoking policy, seats and banquet capacity,
        private room/tatami/counter/terrace/charter/parking/Wi-Fi amenities,
        all-you-can-drink/eat, drink features, visit scenes and remarks.


        **Price:** 5 credits


        **💡 AI Hint:** Fetch a single Hot Pepper Gourmet (ホットペッパーグルメ)
        restaurant by id ('J003433499' or 'strJ003433499') or a full restaurant
        URL. Returns name, catch_copy, address (street/locality/region/country),
        latitude/longitude, telephone, genres, area, nearest_station, access,
        rating, review_count, course_count, coupon_count,
        budget_dinner/budget_lunch, budget_note, open_hours, closed_days,
        is_net_reservable, point_use, smart_pay, credit_cards, e_money,
        qr_payments, smoking, total_seats, max_banquet_capacity, amenity flags
        (has_private_room/has_tatami/has_counter/has_terrace/has_charter/has_wifi/has_parking/...),
        has_all_you_can_drink/eat, drink_features, kids_friendly,
        celebration_ok, shop_features, remarks and visit scenes (name +
        percentage).


        **⚠️ Common errors:** 412: Restaurant not found (well-formed id but the
        restaurant page does not exist)
      operationId: __api_hotpepper_restaurants_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HotpepperRestaurantsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HotpepperRestaurant'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HotpepperRestaurantsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        restaurant:
          type: string
          minLength: 1
          description: >-
            Hot Pepper restaurant id (strJ{id} or J{id}) or a full restaurant
            URL
          examples:
            - J003433499
            - strJ003433499
            - https://www.hotpepper.jp/strJ003433499/
      type: object
      required:
        - restaurant
    HotpepperRestaurant:
      properties:
        '@type':
          type: string
          default: HotpepperRestaurant
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        catch_copy:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/HotpepperRestaurantAddress'
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        telephone:
          anyOf:
            - type: string
            - type: 'null'
        genres:
          items:
            type: string
          type: array
          default: []
        area:
          anyOf:
            - type: string
            - type: 'null'
        nearest_station:
          anyOf:
            - type: string
            - type: 'null'
        access:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        course_count:
          anyOf:
            - type: integer
            - type: 'null'
        coupon_count:
          anyOf:
            - type: integer
            - type: 'null'
        budget_dinner:
          anyOf:
            - type: string
            - type: 'null'
        budget_lunch:
          anyOf:
            - type: string
            - type: 'null'
        budget_note:
          anyOf:
            - type: string
            - type: 'null'
        open_hours:
          anyOf:
            - type: string
            - type: 'null'
        closed_days:
          anyOf:
            - type: string
            - type: 'null'
        is_net_reservable:
          type: boolean
          default: false
        point_use:
          anyOf:
            - type: boolean
            - type: 'null'
        smart_pay:
          anyOf:
            - type: boolean
            - type: 'null'
        credit_cards:
          items:
            type: string
          type: array
          default: []
        e_money:
          items:
            type: string
          type: array
          default: []
        qr_payments:
          items:
            type: string
          type: array
          default: []
        smoking:
          anyOf:
            - type: string
            - type: 'null'
        total_seats:
          anyOf:
            - type: integer
            - type: 'null'
        max_banquet_capacity:
          anyOf:
            - type: integer
            - type: 'null'
        has_private_room:
          anyOf:
            - type: boolean
            - type: 'null'
        has_tatami:
          anyOf:
            - type: boolean
            - type: 'null'
        has_horigotatsu:
          anyOf:
            - type: boolean
            - type: 'null'
        has_counter:
          anyOf:
            - type: boolean
            - type: 'null'
        has_sofa:
          anyOf:
            - type: boolean
            - type: 'null'
        has_terrace:
          anyOf:
            - type: boolean
            - type: 'null'
        has_charter:
          anyOf:
            - type: boolean
            - type: 'null'
        has_wifi:
          anyOf:
            - type: boolean
            - type: 'null'
        has_barrier_free:
          anyOf:
            - type: boolean
            - type: 'null'
        has_parking:
          anyOf:
            - type: boolean
            - type: 'null'
        other_facilities:
          items:
            type: string
          type: array
          default: []
        has_all_you_can_drink:
          anyOf:
            - type: boolean
            - type: 'null'
        has_all_you_can_eat:
          anyOf:
            - type: boolean
            - type: 'null'
        drink_features:
          items:
            type: string
          type: array
          default: []
        kids_friendly:
          anyOf:
            - type: string
            - type: 'null'
        celebration_ok:
          anyOf:
            - type: boolean
            - type: 'null'
        shop_features:
          anyOf:
            - type: string
            - type: 'null'
        remarks:
          anyOf:
            - type: string
            - type: 'null'
        scenes:
          items:
            $ref: '#/components/schemas/HotpepperRestaurantScene'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    HotpepperRestaurantAddress:
      properties:
        '@type':
          type: string
          default: HotpepperRestaurantAddress
        street:
          anyOf:
            - type: string
            - type: 'null'
        locality:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HotpepperRestaurantScene:
      properties:
        '@type':
          type: string
          default: HotpepperRestaurantScene
        name:
          type: string
        percentage:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - name
    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

````