/v1/search/audiobooks
Search audiobooks
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/itunes-api/v1/search/audiobooks" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/itunes-api/v1/search/audiobooks", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/itunes-api/v1/search/audiobooks");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/itunes-api/v1/search/audiobooks",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"term": "stephen king",
"count": 29,
"media": "audiobook",
"results": [
{
"genre": "Mysteries & Thrillers",
"price": 3.99,
"artwork": "https://is1-ssl.mzstatic.com/image/thumb/Music118/v4/49/0a/02/490a02cd-8161-f00e-8520-f8e7c2d7c49d/9781508245360.jpg/600x600bb.jpg",
"country": "USA",
"currency": "USD",
"explicit": "cleaned",
"artist_id": 2024797,
"artist_url": "https://books.apple.com/us/author/stephen-king/id2024797?uo=4",
"artist_name": "Stephen King",
"description": "<b>#1 <i>New York Times </i>bestselling author Stephen King’s terrifying novella about a town engulfed in a dense, mysterious mist—as humanity makes its last stand against unholy destruction—now available as a stand-alone edition.</b><br /><br />David Drayton, his son Billy, and their neighbor Brent Norton head to the local grocery store to replenish supplies following a freak storm. Once there, they and other local citizens are trapped by a strange mist that has enveloped the town and in which strange creatures are lurking. As the mist takes its toll on the nerves of those trapped in the store, a religious zealot, Mrs. Carmody begins to play on their fears to convince them that this is God’s vengeance for their sins and that a sacrifice must be made and two groups—those for and those against—are aligned. When it is realized that staying in the store may prove fatal, a small group including the Draytons, store employee Ollie Weeks, Amanda Dumfries, Irene Reppler, and Dan Miller attempt to make their escape. They find that what’s “out there” may be worse than what they left behind.<br /><br /> Originally published in King's acclaimed collection, <i>Skeleton Crew, </i>this exhilarating novella proves why Stephen King is a master storyteller in short form.",
"preview_url": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview126/v4/5f/3c/b8/5f3cb8b0-edb4-e020-0443-d39ac7259796/mzaf_10447153222977117139.std.aac.p.m4a",
"track_count": 1,
"release_date": "2017-05-23T07:00:00Z",
"wrapper_type": "audiobook",
"collection_id": 1439470959,
"collection_url": "https://books.apple.com/us/audiobook/the-mist-unabridged/id1439470959?uo=4",
"collection_name": "The Mist (Unabridged)",
"release_date_utc": "2017-05-23T07:00:00Z"
},
{
"genre": "Mysteries & Thrillers",
"price": 29.99,
"artwork": "https://is1-ssl.mzstatic.com/image/thumb/Music113/v4/31/cf/5c/31cf5cf4-2455-1405-ed0b-ff758ef1acc1/9781508217114.jpg/600x600bb.jpg",
"country": "USA",
"currency": "USD",
"explicit": "cleaned",
"artist_id": 2024797,
…