Skip to main content
POST
/
api
/
hotpepper
/
restaurants
/
menu
/hotpepper/restaurants/menu
curl --request POST \
  --url https://api.anysite.io/api/hotpepper/restaurants/menu \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "restaurant": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "type": "<string>",
    "@type": "HotpepperMenuItem",
    "name": "<string>",
    "description": "<string>",
    "price": 123,
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
restaurant
string
required

Hot Pepper restaurant id (strJ{id} or J{id}) or a full restaurant URL

Minimum string length: 1
Examples:

"J003433499"

"strJ003433499"

"https://www.hotpepper.jp/strJ003433499/"

count
integer
required

Max number of menu items to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

type
string
required
@type
string
default:HotpepperMenuItem
name
string | null
description
string | null
price
integer | null
image
string | null