Skip to content
GET /v1/profile

A member's lifetime profile

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/letterboxd-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "username": "dave",
        "favorites": [
            {
                "year": 1963,
                "title": "High and Low"
            },
            {
                "year": 2018,
                "title": "Burning"
            },
            {
                "year": 1988,
                "title": "My Neighbor Totoro"
            },
            {
                "year": 2001,
                "title": "Mulholland Drive"
            }
        ],
        "followers": 35121,
        "following": 77,
        "profile_url": "https://letterboxd.com/dave/",
        "display_name": "Dave Vis",
        "member_since": "12/11/2011",
        "films_watched": 2567
    },
    "meta": {
        "timestamp": "2026-06-13T14:09:29.574Z",
        "request_id": "8c792ae1-5900-4f06-b811-97af9b987a88"
    },
    "status": "ok",
    "message": "Profile retrieved successfully",
    "success": true
}