Endpoint Playground
Test Crawlora's Spotify audiobook chapters 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/spotify/audiobook/chapters?uri=spotify%3Ashow%3A76GTo4lM62dFR11VuALF01&id=76GTo4lM62dFR11VuALF01&offset=0&limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | No | spotify:show:76GTo4lM62dFR11VuALF01 | Spotify audiobook/show URI or open.spotify.com show URL |
| id | string | No | 76GTo4lM62dFR11VuALF01 | Spotify show ID |
| offset | integer | No | 0 | Chapter offset |
| limit | integer | No | 10 | Chapter limit, clamped to 1-50 |
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:show:76GTo4lM62dFR11VuALF01",
"chapters": [
{
"uri": "spotify:episode:example",
"name": "Chapter 1"
}
],
"meta": {
"operationName": "queryBookChapters",
"count": 1,
"fetchedAt": "2026-05-13T20:41:13Z"
}
}
}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 audiobook chapters from Spotify Web Player private Pathfinder responses.
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:show:76GTo4lM62dFR11VuALF01",
"chapters": [
{
"uri": "spotify:episode:example",
"name": "Chapter 1"
}
],
"meta": {
"operationName": "queryBookChapters",
"count": 1,
"fetchedAt": "2026-05-13T20:41:13Z"
}
}
}curl "https://api.crawlora.net/api/v1/spotify/audiobook/chapters" \
-H "x-api-key: $CRAWLORA_API_KEY"