Endpoint Playground
Test Crawlora's Audible Category 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/category/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Audible category id from GET /audible/categories |
{
"code": 200,
"msg": "OK",
"data": {
"id": "18580606011",
"name": "Science Fiction & Fantasy",
"children": [
{
"id": "18580607011",
"name": "Fantasy"
},
{
"id": "18580628011",
"name": "Science Fiction"
}
],
"source_url": "https://api.audible.com/1.0/catalog/categories/18580606011?response_groups=category_metadata"
}
}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 Audible category node and its immediate children by id — cheaper than fetching the full tree from GET /audible/categories when only one node is needed. Credential-free public catalog data from api.audible.com.
{
"code": 200,
"msg": "OK",
"data": {
"id": "18580606011",
"name": "Science Fiction & Fantasy",
"children": [
{
"id": "18580607011",
"name": "Fantasy"
},
{
"id": "18580628011",
"name": "Science Fiction"
}
],
"source_url": "https://api.audible.com/1.0/catalog/categories/18580606011?response_groups=category_metadata"
}
}curl "https://api.crawlora.net/api/v1/audible/category/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"