Skip to main content
POST
/
api
/
bestbuy
/
products
/bestbuy/products
curl --request POST \
  --url https://api.anysite.io/api/bestbuy/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@bestbuy_product",
    "title": "<string>",
    "brand": "<string>",
    "model": "<string>",
    "color": "<string>",
    "upc": "<string>",
    "price": 123,
    "list_price": 123,
    "currency": "<string>",
    "rating": 123,
    "review_count": 123,
    "question_count": 123,
    "availability": "<string>",
    "condition": "<string>",
    "image": "<string>",
    "images": [],
    "breadcrumbs": [],
    "category": "<string>",
    "highlights": [],
    "specifications": {},
    "included_items": [],
    "offers": [],
    "return_policy_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Best Buy product SKU or a product URL containing it

Minimum string length: 1
Examples:

"6612977"

"https://www.bestbuy.com/site/-/6612977.p?skuId=6612977"

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:@bestbuy_product
title
string | null
brand
string | null
model
string | null
color
string | null
upc
string | null
price
number | null
list_price
number | null
currency
string | null
rating
number | null
review_count
integer | null
question_count
integer | null
availability
string | null
condition
string | null
image
string | null
images
string[]
breadcrumbs
string[]
category
string | null
highlights
string[]
specifications
Specifications · object
included_items
string[]
offers
BestbuyProductOffer · object[]
return_policy_url
string | null