Endpoint Playground
Test Crawlora's Audible 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/audible/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"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?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 Audible's full genre/category tree (root genres with their subgenres), including the category ids accepted by GET /audible/search's category_id filter. Credential-free public catalog data from api.audible.com.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"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?response_groups=category_metadata"
}
}curl "https://api.crawlora.net/api/v1/audible/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"