Endpoint Playground
Test Crawlora's Best Buy Product Q&A API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/bestbuy/product/questions?sku=<sku>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| sku | string | Yes | Numeric Best Buy SKU |
{
"code": 200,
"data": {
"count": 5,
"fetched_at": "sample",
"questions": [
{
"answer": "sample",
"answered": "Answered 2 months ago",
"answered_by": "ASUS Answers",
"question": "sample"
}
],
"sku": "6673590",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns the customer questions (with answers, when present) Best Buy embeds directly on a product's page: question text, answer text, who answered, and when. sku is the numeric Best Buy SKU shown on bestbuy.com product pages and URLs. A product with no questions asked yet returns an empty list, not an error.
{
"code": 200,
"data": {
"count": 5,
"fetched_at": "sample",
"questions": [
{
"answer": "sample",
"answered": "Answered 2 months ago",
"answered_by": "ASUS Answers",
"question": "sample"
}
],
"sku": "6673590",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/bestbuy/product/questions?sku=<sku>" \
-H "x-api-key: $CRAWLORA_API_KEY"