Endpoint Playground
Test Crawlora's Best Buy Product Reviews 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/reviews?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": 20,
"fetched_at": "sample",
"rating": 4.6,
"review_count": 28,
"reviews": [
{
"author": "nhim",
"helpful": 1,
"posted": "Posted 3 days ago",
"rating": 5,
"recommended": true,
"tags": [
"Verified Purchaser"
],
"text": "sample",
"title": "sample",
"unhelpful": 1
}
],
"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 page 1 (up to 20) of one Best Buy product's normalized customer reviews (rating, title, text, author, posted date, tags such as Verified Purchaser, recommended flag, helpful/unhelpful counts), sourced from the product's dedicated reviews page. sku is the numeric Best Buy SKU shown on bestbuy.com product pages and URLs.
{
"code": 200,
"data": {
"count": 20,
"fetched_at": "sample",
"rating": 4.6,
"review_count": 28,
"reviews": [
{
"author": "nhim",
"helpful": 1,
"posted": "Posted 3 days ago",
"rating": 5,
"recommended": true,
"tags": [
"Verified Purchaser"
],
"text": "sample",
"title": "sample",
"unhelpful": 1
}
],
"sku": "6673590",
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/bestbuy/product/reviews?sku=<sku>" \
-H "x-api-key: $CRAWLORA_API_KEY"