/v1/trending
Trending books by period
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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",
…