Endpoint Playground
Test Crawlora's Amazon chart categories 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/categories?chart=best_sellers" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| chart | string | Yes | best_sellers | Chart type |
| department | string | No | Amazon department slug | |
| node | string | No | Numeric browse node id (requires department) |
{
"code": 200,
"msg": "OK",
"data": {
"chart": "best_sellers",
"categories": [
{
"name": "Electronics",
"department": "electronics",
"link": "https://www.amazon.com/Best-Sellers-Electronics/zgbs/electronics/ref=zg_bs_unv_electronics_0_1"
}
]
}
}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 the department and subcategory values amazon-charts accepts for a given chart. Omit department to list a chart's top-level departments; pass a department (and optionally a node) to get that category's own name plus its immediate child categories.
{
"code": 200,
"msg": "OK",
"data": {
"chart": "best_sellers",
"categories": [
{
"name": "Electronics",
"department": "electronics",
"link": "https://www.amazon.com/Best-Sellers-Electronics/zgbs/electronics/ref=zg_bs_unv_electronics_0_1"
}
]
}
}curl "https://api.crawlora.net/api/v1/amazon/charts/categories?chart=<chart>" \
-H "x-api-key: $CRAWLORA_API_KEY"