Skip to main content
POST
/
api
/
bestbuy
/
products
/
questions
/bestbuy/products/questions
curl --request POST \
  --url https://api.anysite.io/api/bestbuy/products/questions \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@bestbuy_question",
    "text": "<string>",
    "author": "<string>",
    "created_at": "<string>",
    "answer_count": 123,
    "helpful_count": 123,
    "is_ai_generated": false,
    "images": [],
    "answers": []
  }
]

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 questions 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_question
text
string | null
author
string | null
created_at
string | null
answer_count
integer | null
helpful_count
integer | null
is_ai_generated
boolean
default:false
images
string[]
answers
BestbuyAnswer · object[]