Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/letterboxd-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}