Endpoint Playground
Test Crawlora's Get a Best Buy product's detail 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?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": {
"fetched_at": "sample",
"product": {
"availability": "InStock",
"brand": "ASUS",
"breadcrumbs": [
{
"name": "Laptops",
"url": "https://example.com/resource"
}
],
"color": "sample",
"condition": "NewCondition",
"currency_code": "USD",
"description": "sample",
"images": [
"sample"
],
"model": "sample",
"name": "sample",
"price": 4399.99,
"product_id": "JJGHGSJZR6",
"rating": 4.6,
"review_count": 28,
"sku": "6673590",
"url": "https://example.com/resource"
},
"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 one Best Buy product's normalized detail (name, brand, model, color, price, availability, rating, images, breadcrumbs), sourced from the product page's own schema.org Product structured-data block. sku is the numeric Best Buy SKU shown on bestbuy.com product pages and URLs.
{
"code": 200,
"data": {
"fetched_at": "sample",
"product": {
"availability": "InStock",
"brand": "ASUS",
"breadcrumbs": [
{
"name": "Laptops",
"url": "https://example.com/resource"
}
],
"color": "sample",
"condition": "NewCondition",
"currency_code": "USD",
"description": "sample",
"images": [
"sample"
],
"model": "sample",
"name": "sample",
"price": 4399.99,
"product_id": "JJGHGSJZR6",
"rating": 4.6,
"review_count": 28,
"sku": "6673590",
"url": "https://example.com/resource"
},
"source_url": "https://example.com/resource"
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/bestbuy/product?sku=<sku>" \
-H "x-api-key: $CRAWLORA_API_KEY"