Skip to main content
POST
/
api
/
bestbuy
/
products
/
reviews
/bestbuy/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/bestbuy/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@bestbuy_review",
    "rating": 123,
    "title": "<string>",
    "text": "<string>",
    "author": "<string>",
    "created_at": "<string>",
    "helpful_count": 123,
    "unhelpful_count": 123,
    "is_recommended": true,
    "badges": [],
    "seller_responses": []
  }
]

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"

count
integer
required

Max number of reviews 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
@type
string
default:@bestbuy_review
rating
number | null
title
string | null
text
string | null
author
string | null
created_at
string | null
helpful_count
integer | null
unhelpful_count
integer | null
badges
string[]
seller_responses
string[]