Skip to main content
POST
/
api
/
kakaku
/
products
/
offers
/kakaku/products/offers
curl --request POST \
  --url https://api.anysite.io/api/kakaku/products/offers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "item": "<string>",
  "timeout": 300
}
'
[
  {
    "product_id": "<string>",
    "@type": "@kakaku_offer",
    "shop_id": 123,
    "shop_name": "<string>",
    "price": 123,
    "shipping": "<string>",
    "stock": "<string>",
    "is_lowest": false,
    "payment_methods": [],
    "shop_comment": "<string>",
    "shop_rating": 123,
    "shop_rating_count": 123,
    "point": 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

product_id
string
required
@type
string
default:@kakaku_offer
shop_id
integer | null
shop_name
string | null
price
number | null
shipping
string | null
stock
string | null
is_lowest
boolean
default:false
payment_methods
string[]
shop_comment
string | null
shop_rating
integer | null
shop_rating_count
integer | null
point
integer | null