Zum Inhalt springen
GET /v1/stats

Computed recent-watching stats

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/letterboxd-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/letterboxd-api/v1/stats" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/letterboxd-api/v1/stats", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/letterboxd-api/v1/stats");
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/stats",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "latest": {
            "film": "Rush Hour",
            "rating": 3.5,
            "watched_date": "2026-05-31"
        },
        "username": "dave",
        "profile_url": "https://letterboxd.com/dave/",
        "rated_films": 28,
        "rewatch_pct": 6,
        "recent_films": 50,
        "highest_rated": {
            "film": "Resurrection",
            "year": 2025,
            "rating": 4.5
        },
        "rewatch_count": 3,
        "average_rating": 3.38,
        "rating_distribution": {
            "0.5": 0,
            "1.0": 0,
            "1.5": 0,
            "2.0": 3,
            "2.5": 4,
            "3.0": 3,
            "3.5": 6,
            "4.0": 11,
            "4.5": 1,
            "5.0": 0
        }
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:00.830Z",
        "request_id": "199c1b93-6ccd-4375-b47a-367b75d43bef"
    },
    "status": "ok",
    "message": "Stats retrieved successfully",
    "success": true
}