/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/letterboxd-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/letterboxd-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/letterboxd-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/letterboxd-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "Letterboxd public member RSS (live)",
"service": "letterboxd-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/diary": "A member's recent film diary (username=dave, limit up to 50).",
"GET /v1/stats": "Computed recent-watching stats (username=dave): count, average rating, distribution, rewatch rate."
},
"description": "Live Letterboxd film-diary data from a member's public RSS: a member's recent diary (film, year, star rating, date watched, rewatch flag, review excerpt and link) and a computed summary of their recent watching (film count, average rating, rating distribution, rewatch rate, highest-rated). Live, no key. Distinct from TV and movie-catalogue APIs — this is a Letterboxd member's own diary and ratings.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T03:02:01.317Z",
"request_id": "c81e686f-0b13-4193-8db8-269548f48de2"
},
"status": "ok",
"message": "Meta",
"success": true
}