/v1/diary
A member's recent film diary
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/letterboxd-api/v1/diary" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/letterboxd-api/v1/diary", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/letterboxd-api/v1/diary");
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/diary",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 25,
"diary": [
{
"film": "Rush Hour",
"link": "https://letterboxd.com/dave/film/rush-hour/",
"year": 1998,
"rating": 3.5,
"review": "Watched on Sunday May 31, 2026.",
"rewatch": true,
"published": "Tue, 2 Jun 2026 02:03:37 +1200",
"watched_date": "2026-05-31"
},
{
"film": "GOAT",
"link": "https://letterboxd.com/dave/film/goat-2026/",
"year": 2026,
"rating": 3.5,
"review": "Watched on Friday May 29, 2026.",
"rewatch": false,
"published": "Sat, 30 May 2026 11:02:33 +1200",
"watched_date": "2026-05-29"
},
{
"film": "The Backrooms (Found Footage)",
"link": "https://letterboxd.com/dave/film/the-backrooms-found-footage/",
"year": 2022,
"rating": null,
"review": "Watched on Friday May 22, 2026.",
"rewatch": false,
"published": "Wed, 27 May 2026 09:57:33 +1200",
"watched_date": "2026-05-22"
},
{
"film": "PlayTime",
"link": "https://letterboxd.com/dave/film/playtime/",
"year": 1967,
"rating": 3.5,
"review": "Watched on Tuesday May 26, 2026.",
"rewatch": false,
"published": "Wed, 27 May 2026 02:39:55 +1200",
"watched_date": "2026-05-26"
},
{
"film": "Star Wars: The Mandalorian and Grogu",
"link": "https://letterboxd.com/dave/film/star-wars-the-mandalorian-and-grogu/",
"year": 2026,
"rating": 2.5,
"review": "Watched on Friday May 22, 2026.",
"rewatch": false,
"published": "Sat, 23 May 2026 00:34:53 +1200",
"watched_date": "2026-05-22"
},
{
"film": "The Umbrellas of Cherbourg",
"link": "https://letterboxd.com/dave/film/the-umbrellas-of-cherbourg/",
"year": 1964,
"rating": 4,
"review": "Watched on Tuesday May 19, 2026.",
"rewatch": false,
"published": "Wed, 20 May 2026 01:08:30 +1200",
"watched_date": "2026-05-19"
},
{
"film": "Resurrection",
"link": "https://letterboxd.com/dave/film/resurrection-2025/",
"year": 2025,
"rating": 4.5,
"review": "Watched on Tuesday May 19, 2026.",
"rewatch": false,
"published": "Tue, 19 May 2026 22:04:50 +1200",
"watched_date": "2026-05-19"
},
…