Endpoint Playground
Test Crawlora's Spotify Audiobooks Search 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/audiobooks/search?q=hello&offset=0&limit=30&number_of_top_results=20&include_audiobooks=true&include_pre_releases=true&include_album_pre_releases=false&include_authors=false&include_episode_content_ratings_v2=false" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | hello | Search term |
| offset | integer | No | 0 | Search offset |
| limit | integer | No | 30 | Audiobook result limit, clamped to 1-50 |
| number_of_top_results | integer | No | 20 | Top result limit, clamped to 1-50 |
| include_audiobooks | boolean | No | true | Include audiobook results |
| include_pre_releases | boolean | No | true | Include pre-release results |
| include_album_pre_releases | boolean | No | false | Include album pre-release results |
| include_authors | boolean | No | false | Include authors |
| include_episode_content_ratings_v2 | boolean | No | false | Include Spotify episode content ratings v2 |
{
"code": 200,
"msg": "OK",
"data": {
"searchTerm": "hello",
"audiobooks": [
{
"uri": "spotify:audiobook:example",
"type": "Audiobook",
"title": "Hello",
"externalUrl": "https://open.spotify.com/audiobook/example"
}
],
"meta": {
"operationName": "searchAudiobooks",
"audiobookCount": 1,
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}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 normalized Spotify Web Player audiobook search results for a search term. The endpoint fetches anonymous Spotify credentials at request time; caller-supplied Spotify bearer or client tokens are not required.
{
"code": 200,
"msg": "OK",
"data": {
"searchTerm": "hello",
"audiobooks": [
{
"uri": "spotify:audiobook:example",
"type": "Audiobook",
"title": "Hello",
"externalUrl": "https://open.spotify.com/audiobook/example"
}
],
"meta": {
"operationName": "searchAudiobooks",
"audiobookCount": 1,
"fetchedAt": "2026-05-13T15:22:41Z"
}
}
}curl "https://api.crawlora.net/api/v1/spotify/audiobooks/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"