Endpoint Playground
Test Crawlora's Search Amazon products 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/search?k=apple+watch&s=review-rank&page=1" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| k | string | Yes | apple watch | Search keyword |
| s | string | No | review-rank | Sort order |
| page | integer | No | 1 | 1-based page number |
{
"code": 200,
"msg": "OK",
"data": [
{
"asin": "142325113X",
"title": "ChatGPT Uses & Prompts: a QuickStudy Laminated Reference Guide",
"is_sponsored": false,
"link": "https://www.amazon.com/ChatGPT-Uses-Prompts-QuickStudy-Laminated/dp/142325113X/",
"image": "https://m.media-amazon.com/images/I/71qzQ91Qe0L._AC_UL320_.jpg",
"rating": 4.4,
"review_count": 223,
"price": 8.34,
"list_price": 8.95,
"number_of_bought_in_last_month": 0,
"is_free_delivery": false,
"more_choice": "https://www.amazon.com/gp/offer-listing/142325113X/"
}
]
}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 Amazon search result cards for `amazon.com`.
{
"code": 200,
"msg": "OK",
"data": [
{
"asin": "142325113X",
"title": "ChatGPT Uses & Prompts: a QuickStudy Laminated Reference Guide",
"is_sponsored": false,
"link": "https://www.amazon.com/ChatGPT-Uses-Prompts-QuickStudy-Laminated/dp/142325113X/",
"image": "https://m.media-amazon.com/images/I/71qzQ91Qe0L._AC_UL320_.jpg",
"rating": 4.4,
"review_count": 223,
"price": 8.34,
"list_price": 8.95,
"number_of_bought_in_last_month": 0,
"is_free_delivery": false,
"more_choice": "https://www.amazon.com/gp/offer-listing/142325113X/"
}
]
}curl "https://api.crawlora.net/api/v1/amazon/search?k=<k>" \
-H "x-api-key: $CRAWLORA_API_KEY"