Endpoint Playground
Test Crawlora's Retrieve Amazon product details 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/amazon/product/B0DGJ736JM?language=en_US¤cy=USD" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| asin (path) | string | Yes | B0DGJ736JM | Amazon ASIN |
| language | string | No | en_US | Amazon language |
| currency | string | No | USD | Amazon currency |
{
"code": 200,
"msg": "OK",
"data": {
"asin": "B0DGJ736JM",
"title": "Apple Watch SE (2nd Gen) [GPS 40mm]",
"link": "https://www.amazon.com/dp/B0DGJ736JM/",
"rating": 4.4,
"review_count": 1055,
"price": 189
}
}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 normalized product details for an Amazon ASIN on `amazon.com`, including pricing, availability, overview data, inline review samples, and descriptive content.
{
"code": 200,
"msg": "OK",
"data": {
"asin": "B0DGJ736JM",
"title": "Apple Watch SE (2nd Gen) [GPS 40mm]",
"link": "https://www.amazon.com/dp/B0DGJ736JM/",
"rating": 4.4,
"review_count": 1055,
"price": 189
}
}curl "https://api.crawlora.net/api/v1/amazon/product/<asin>" \
-H "x-api-key: $CRAWLORA_API_KEY"