Skip to main content
POST
/
api
/
bestbuy
/
products
/
offers
/bestbuy/products/offers
curl --request POST \
  --url https://api.anysite.io/api/bestbuy/products/offers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@bestbuy_offer",
    "sku": "<string>",
    "condition": "<string>",
    "grade": "<string>",
    "price": 123,
    "currency": "<string>",
    "availability": "<string>",
    "seller_name": "<string>",
    "shipping": [],
    "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

@type
string
default:@bestbuy_offer
sku
string | null
condition
string | null
grade
string | null
price
number | null
currency
string | null
availability
string | null
seller_name
string | null
shipping
string[]
url
string | null