Skip to main content
POST
/
api
/
bestbuy
/
products
/
search
/bestbuy/products/search
curl --request POST \
  --url https://api.anysite.io/api/bestbuy/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "Best-Match"
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@bestbuy_search_product",
    "alias": "<string>",
    "title": "<string>",
    "brand": "<string>",
    "model": "<string>",
    "condition": "<string>",
    "price": 123,
    "list_price": 123,
    "currency": "<string>",
    "discount_percent": 123,
    "rating": 123,
    "review_count": 123,
    "image": "<string>"
  }
]

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
Example:

"laptop"

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
sort
enum<string>
default:Best-Match

Result ordering

Available options:
Best-Match,
Best-Selling,
Best-Discount,
Price-Low-To-High,
Price-High-To-Low,
Customer-Rating,
New-Arrivals

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@bestbuy_search_product
alias
string | null
title
string | null
brand
string | null
model
string | null
condition
string | null
price
number | null
list_price
number | null
currency
string | null
discount_percent
integer | null
rating
number | null
review_count
integer | null
image
string | null