Endpoint Playground
Test Crawlora's Amazon product charts 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/charts?chart=best_sellers&department=<department>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| chart | string | Yes | best_sellers | Chart type |
| department | string | Yes | Amazon department slug | |
| node | string | No | Numeric browse node id | |
| page | integer | No | 1-based page number |
{
"code": 200,
"msg": "OK",
"data": {
"chart": "best_sellers",
"department": "electronics",
"category_name": "Electronics",
"page": 1,
"has_next_page": true,
"source_url": "https://www.amazon.com/gp/bestsellers/electronics",
"items": [
{
"rank": 1,
"asin": "B08JHCVHTY",
"title": "Blink Plus Plan with monthly auto-renewal",
"link": "https://www.amazon.com/dp/B08JHCVHTY/",
"image": "https://images-na.ssl-images-amazon.com/images/I/31YHGbJsldL._AC_UL300_SR300,200_.png",
"price": 11.99,
"rating": 4.4,
"review_count": 280227
}
]
}
}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 page of a ranked Amazon chart (Best Sellers, New Releases, or Most Wished For) for a department or department subcategory on `amazon.com`. Discover valid department/node values with amazon-charts-categories.
{
"code": 200,
"msg": "OK",
"data": {
"chart": "best_sellers",
"department": "electronics",
"category_name": "Electronics",
"page": 1,
"has_next_page": true,
"source_url": "https://www.amazon.com/gp/bestsellers/electronics",
"items": [
{
"rank": 1,
"asin": "B08JHCVHTY",
"title": "Blink Plus Plan with monthly auto-renewal",
"link": "https://www.amazon.com/dp/B08JHCVHTY/",
"image": "https://images-na.ssl-images-amazon.com/images/I/31YHGbJsldL._AC_UL300_SR300,200_.png",
"price": 11.99,
"rating": 4.4,
"review_count": 280227
}
]
}
}curl "https://api.crawlora.net/api/v1/amazon/charts?chart=<chart>&department=<department>" \
-H "x-api-key: $CRAWLORA_API_KEY"