Endpoint Playground
Test Crawlora's Audible Top Author Chart 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/audible/charts/authors" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| page | integer | No | 1-based result page, default 1 |
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"has_next_page": true,
"entries": [
{
"rank": 1,
"asin": "B0G2312QRC",
"name": "Caro Claire Burke",
"uri": "https://www.audible.com/author/Caro-Claire-Burke/B0G2312QRC"
}
],
"source_url": "https://www.audible.com/charts/authors"
}
}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 Audible's public ranked author chart. This is a people-shaped HTML surface and exposes only rank, author identity, image metadata when available, and a canonical author URI; author detail remains outside the credential-free public surface.
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"has_next_page": true,
"entries": [
{
"rank": 1,
"asin": "B0G2312QRC",
"name": "Caro Claire Burke",
"uri": "https://www.audible.com/author/Caro-Claire-Burke/B0G2312QRC"
}
],
"source_url": "https://www.audible.com/charts/authors"
}
}curl "https://api.crawlora.net/api/v1/audible/charts/authors" \
-H "x-api-key: $CRAWLORA_API_KEY"