/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/readingtrends-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/readingtrends-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/readingtrends-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "Open Library trending + ratings + bookshelves (live)",
"periods": [
"now",
"daily",
"weekly",
"monthly",
"yearly",
"forever"
],
"service": "readingtrends-api",
"endpoints": {
"GET /v1/book": "A book's social reading stats (id=OL17930368W: ratings + shelf counts).",
"GET /v1/meta": "This document.",
"GET /v1/trending": "Trending books by period (period=now|daily|weekly|monthly|yearly|forever, limit)."
},
"description": "Live reading-community trends from Open Library: trending books by day/week/month/year (with author, year and edition count), and per-book social reading stats — average rating, rating count, and want-to-read / currently-reading / already-read shelf counts. Live, no key. Distinct from book-catalogue search/ISBN APIs — this is the reading-popularity and engagement layer.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T03:03:06.297Z",
"request_id": "7cf3081d-d7c9-4298-8711-34ed12e54586"
},
"status": "ok",
"message": "Meta",
"success": true
}