Letterboxd Scraper

ENDPOINTS
GET/films/stats

Film Stats

Lightweight counters: average rating, full ratings histogram, watches, lists, likes and Top 500 rank.

QUERY PARAMS

Letterboxd film slug, film URL, boxd.it short link, IMDb ID or TMDB ID.

Examples:

  • Slug: interstellar
  • URL: https://letterboxd.com/film/interstellar/
  • IMDb: tt0816692
  • TMDB: tmdb:157336
{
  "film": {
    "id": 117621,
    "slug": "interstellar",
    "name": "Interstellar",
    "original_name": null,
    "year": 2014,
    "link": "https://letterboxd.com/film/interstellar/",
    "short_link": "https://boxd.it/4VZ8",
    "runtime_minutes": 169,
    "directors": [
      "Christopher Nolan"
    ]
  },
  "rating": {
    "average": 4.46,
    "count": 6418046,
    "distribution": [
      {
        "rating": 0.5,
        "count": 9719,
        "percent": 0
      },
      {
        "rating": 1.0,
        "count": 22134,
        "percent": 0
      },
      {
        "rating": 1.5,
        "count": 11532,
        "percent": 0
      },
      {
        "rating": 2.0,
        "count": 69504,
        "percent": 1
      },
      {
        "rating": 2.5,
        "count": 59239,
        "percent": 1
      },
      {
        "rating": 3.0,
        "count": 315635,
        "percent": 5
      },
      {
        "rating": 3.5,
        "count": 334629,
        "percent": 5
      },
      {
        "rating": 4.0,
        "count": 1231526,
        "percent": 19
      },
      {
        "rating": 4.5,
        "count": 940889,
        "percent": 15
      },
      {
        "rating": 5.0,
        "count": 3423239,
        "percent": 53
      }
    ]
  },
  "stats": {
    "watches": 8418734,
    "lists": 982100,
    "likes": 4198095,
    "top_500_rank": 33
  }
}