Skip to main content
POST
/
api
/
kakaku
/
products
/
search
/kakaku/products/search
curl --request POST \
  --url https://api.anysite.io/api/kakaku/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@kakaku_search_item",
    "title": "<string>",
    "maker": "<string>",
    "image": "<string>",
    "price": 123,
    "currency": "JPY",
    "category": "<string>",
    "rating": 123,
    "review_count": 123,
    "bbs_count": 123,
    "release_date": "<string>",
    "specs": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
Examples:

"iPhone"

"ノートパソコン"

count
integer
required

Max number of results to return

Required range: x >= 1
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_search_item
title
string | null
maker
string | null
image
string | null
price
number | null
currency
string
default:JPY
category
string | null
rating
number | null
review_count
integer | null
bbs_count
integer | null
release_date
string | null
specs
string[]