/v1/profile
A member's lifetime profile
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}