/v1/trending
Trending books by period
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/readingtrends-api/v1/trending" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/readingtrends-api/v1/trending", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/readingtrends-api/v1/trending");
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/readingtrends-api/v1/trending",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"books": [
{
"id": "OL17930368W",
"url": "https://openlibrary.org/works/OL17930368W",
"rank": 1,
"title": "Atomic Habits",
"author": "James Clear",
"authors": [
"James Clear"
],
"cover_id": 12539702,
"edition_count": 40,
"first_published": 2016
},
{
"id": "OL2010879W",
"url": "https://openlibrary.org/works/OL2010879W",
"rank": 2,
"title": "Rich Dad, Poor Dad",
"author": "Robert T. Kiyosaki",
"authors": [
"Robert T. Kiyosaki",
"Sharon L. Lechter"
],
"cover_id": 8315603,
"edition_count": 115,
"first_published": 1990
},
{
"id": "OL1968368W",
"url": "https://openlibrary.org/works/OL1968368W",
"rank": 3,
"title": "The 48 Laws of Power",
"author": "Robert Greene",
"authors": [
"Robert Greene"
],
"cover_id": 6424160,
"edition_count": 55,
"first_published": 1998
},
{
"id": "OL21640039W",
"url": "https://openlibrary.org/works/OL21640039W",
"rank": 4,
"title": "The Psychology of Money",
"author": "Morgan Housel",
"authors": [
"Morgan Housel"
],
"cover_id": 10389354,
"edition_count": 26,
"first_published": 2020
},
{
"id": "OL42430111W",
"url": "https://openlibrary.org/works/OL42430111W",
"rank": 5,
"title": "The Deal",
"author": "Elle Kennedy",
"authors": [
"Elle Kennedy"
],
"cover_id": 10201611,
"edition_count": 14,
"first_published": 2000
},
{
"id": "OL22057778W",
"url": "https://openlibrary.org/works/OL22057778W",
"rank": 6,
"title": "The Mistake",
"author": "Elle Kennedy",
"authors": [
"Elle Kennedy"
],
"cover_id": 10420220,
"edition_count": 9,
"first_published": 2015
},
{
"id": "OL21516735W",
"url": "https://openlibrary.org/works/OL21516735W",
"rank": 7,
"title": "Her Secret, His Child",
"author": "Miranda Lee",
…