/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}