Skip to main content
POST
/
api
/
kakaku
/
products
/
price-history
/kakaku/products/price-history
curl --request POST \
  --url https://api.anysite.io/api/kakaku/products/price-history \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "item": "<string>",
  "timeout": 300
}
'
[
  {
    "date": "<string>",
    "@type": "@kakaku_price_history_point",
    "low_price": 123,
    "average_price": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
item
string
required

Kakaku.com product id (K/J/M prefixed) or a full product URL

Minimum string length: 1
Examples:

"K0001350350"

"https://kakaku.com/item/K0001350350/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

date
string
required
@type
string
default:@kakaku_price_history_point
low_price
number | null
average_price
number | null