/v1/search/ebooks
Search ebooks
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/itunes-api/v1/search/ebooks" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/itunes-api/v1/search/ebooks", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/itunes-api/v1/search/ebooks");
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/ebooks",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"term": "harry potter",
"count": 30,
"media": "ebook",
"results": [
{
"kind": "ebook",
"price": 11.99,
"artwork": "https://is1-ssl.mzstatic.com/image/thumb/Publication211/v4/bd/f8/2f/bdf82fe6-9d8e-4825-96d9-89c43bf7a547/9781781105849.jpg/600x600bb.jpg",
"currency": "USD",
"track_id": 1037193578,
"artist_id": 79595314,
"track_url": "https://books.apple.com/us/book/harry-potter-and-the-sorcerers-stone-enhanced-edition/id1037193578?uo=4",
"artist_url": "https://books.apple.com/us/artist/j-k-rowling/79595314?uo=4",
"track_name": "Harry Potter and the Sorcerer's Stone (Enhanced Edition)",
"artist_name": "J.K. Rowling",
"description": "\"Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.\"<br /><br />Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!<br /><br /><i>Having become classics of our time, the Harry Potter eBooks never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new readers.</i>",
"release_date": "2015-11-20T08:00:00Z",
"release_date_utc": "2015-11-20T08:00:00Z"
},
{
"kind": "ebook",
"price": 0,
"artwork": "https://is1-ssl.mzstatic.com/image/thumb/Publication211/v4/2b/e3/f3/2be3f3e3-a02f-807b-fbda-2c53dc0445e4/15b652fe-d3ef-4102-bebd-7267207d36da_cover_image.jpg/600x600bb.jpg",
"currency": "USD",
"track_id": 6751670565,
"artist_id": 1515308587,
"track_url": "https://books.apple.com/us/book/the-adventures-of-harry-potter/id6751670565?uo=4",
"artist_url": "https://books.apple.com/us/artist/harsh-agarwal/1515308587?uo=4",
"track_name": "The Adventures of Harry Potter",
"artist_name": "Harsh Agarwal",
"description": "Three years after Hogwarts, Harry Potter’s world has grown quiet—too quiet. But when mysterious forces stir beyond the veil of known magic, Harry, Hermione, and Ron are thrust into a breathtaking journey across dimensions where the rules of magic are rewritten with eve
…