Skip to main content
POST
/
api
/
kakaku
/
products
/kakaku/products
curl --request POST \
  --url https://api.anysite.io/api/kakaku/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "item": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@kakaku_product",
    "title": "<string>",
    "brand": "<string>",
    "maker": "<string>",
    "image": "<string>",
    "images": [],
    "price": 123,
    "currency": "JPY",
    "rating": 123,
    "review_count": 123,
    "bbs_count": 123,
    "favorite_count": 123,
    "ranking": {
      "@type": "@kakaku_product_ranking",
      "rank": 123,
      "total": 123,
      "category": "<string>"
    },
    "release_date": "<string>",
    "category": "<string>",
    "breadcrumbs": [],
    "specs": {}
  }
]

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

id
string
required
url
string
required
@type
string
default:@kakaku_product
title
string | null
brand
string | null
maker
string | null
image
string | null
images
string[]
price
number | null
currency
string
default:JPY
rating
number | null
review_count
integer | null
bbs_count
integer | null
favorite_count
integer | null
ranking
KakakuProductRanking · object
release_date
string | null
category
string | null
breadcrumbs
string[]
specs
Specs · object