A member's recent film diary
API · /letterboxd-api
Letterboxd API
Live Letterboxd film-diary data as an API — Letterboxd is the social network for film lovers, and this returns any member's public diary and ratings from their RSS feed. The diary endpoint lists the films a member has recently watched, each with its title, year, the member's star rating, the date watched, whether it was a rewatch, a review excerpt and the film link. The stats endpoint computes a summary of their recent watching: the number of films, their average rating, the full rating distribution, the rewatch rate and the highest-rated film. The film-social and watch-activity layer for film, social and dashboard apps. Live, no key, no cache. Distinct from TV-listings and movie-catalogue APIs — this is a Letterboxd member's own diary and ratings.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 515 ms
- Server probes · 24h
- Subscribers
- 4,831
- active
- Total calls
- 87
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 13,000 calls / month
- 5 requests / second
- Hard cap (429 above quota, no overage)
- 13k calls/month
- 5 req/sec
- All endpoints
- No credit card
Starter
€7.00 /month
- 170,000 calls / month
- 15 requests / second
- Hard cap (429 above quota, no overage)
- 170k calls/month
- 15 req/sec
- Email support
Pro
€21.00 /month
- 820,000 calls / month
- 40 requests / second
- Hard cap (429 above quota, no overage)
- 820k calls/month
- 40 req/sec
- Priority support
Scale
€47.00 /month
- 4,100,000 calls / month
- 100 requests / second
- Hard cap (429 above quota, no overage)
- 4.1M calls/month
- 100 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Darkroom API
Analog darkroom and film maths as an API, computed locally and deterministically — the three corrections that bite when you develop film and make prints by hand. The reciprocity endpoint corrects long exposures for reciprocity failure, where film loses sensitivity past about a second: corrected time = metered^p (Schwarzschild p ≈ 1.3 for many films, settable per datasheet), so a metered 10-second exposure really wants about 20 seconds, a full stop more, while anything under the threshold is left untouched. The printexposure endpoint adjusts enlarger exposure when you change print size — light spreads as you raise the head, so exposure is proportional to (magnification + 1)², where magnification is print size ÷ negative size: going from 2× to 4× magnification turns a 10-second exposure into 27.8 seconds, about 1.5 stops, ready for f-stop printing. The pushpull endpoint scales development time for pushing or pulling film by N stops — time = base × factor^stops, roughly +40 % per stop pushed — turning a 7-minute base into 13.7 minutes at +2 stops, or 5 minutes pulled a stop. Everything is computed locally and deterministically, so it is instant and private. Ideal for film-photography and darkroom apps, light-meter and timer companions, lab and workshop tools, and analog-photography sites. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 compute endpoints. For digital depth-of-field use a photography API; for lab molarity use a dilution API.
api.oanor.com/darkroom-api
Window Tint API
Window-tint maths as an API, computed locally and deterministically — the net VLT numbers an installer or car owner picks a film by. The catch with tint is that visible light transmission multiplies through layers: factory automotive glass already passes only about 70–80 % of light, so a film’s rated VLT is not what you end up with. The vlt endpoint multiplies it out — net % = the product of each layer’s VLT ÷ 100 — so a 35 % film on 78 % factory glass nets 27.3 %, a 5 % limo film on the same glass nets 3.9 %, and you can stack several layers in one call; it also describes how dark that looks, from near-clear down to blackout. The required endpoint runs it backwards: to land on a target net VLT through known glass you need a film of target ÷ glass × 100, so hitting a 35 % net on 78 % glass takes a 44.9 % film — and it flags the impossible case where the target is lighter than the bare glass already allows. Everything is computed locally and deterministically, so it is instant and private. Ideal for auto-tint, detailing, glass and automotive app developers, film-selection and compliance tools, and shop software. Pure local computation — no key, no third-party service, instant. Legal limits vary by jurisdiction — check local law. Live, nothing stored. 2 compute endpoints.
api.oanor.com/windowtint-api
Star Wars API
The Star Wars universe as an API — every character, planet, film, starship, vehicle and species from the saga. Look up a record by id (e.g. people 1 → Luke Skywalker: 172 cm, born 19 BBY, homeworld Tatooine), search any category by name (e.g. people q=skywalker → Luke, Anakin and Shmi), or list whole categories with paging. Each record carries the full canonical data — physical traits and affiliations for characters; climate, terrain, gravity and population for planets; crew, hyperdrive rating, cargo and cost for starships and vehicles; titles, directors, opening crawls and release dates for the films — with cross-references between them. Backed by swapi.tech. Ideal for fan sites, quizzes and trivia games, Discord bots, learning projects and any Star Wars app.
api.oanor.com/starwars-api
Disney API
Search and browse Disney characters — with their films, TV shows, short films, video games, park attractions, allies, enemies and artwork. Backed by the Disney character database. Great for fan apps, trivia, chatbots, recommendation and entertainment projects.
api.oanor.com/disney-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Letterboxd API?
What's the rate limit for Letterboxd API?
How much does Letterboxd API cost?
Can I cancel my subscription anytime?
Is Letterboxd API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/letterboxd-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/letterboxd-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/letterboxd-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/letterboxd-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.