Skip to content

Letterboxd List

Finds every movie in a Letterboxd list or Letterboxd Films Search.

The expected input is a supported Letterboxd URL. Multiple values are supported as either a list or a comma-separated string.

Private links (which start with the URL https://boxd.it/) are also supported.

Kometa now uses letterboxdpy for Letterboxd access. Standard list URLs continue to work, and /films/... URLs remain supported.

Use the Letterboxd Discovery Builders for people, studios, genres, themes, countries, languages, film collections, and similar movies.

You can add different filters directly to this Builder.

Filter Attribute Description
limit Description: Max number of items per returned.
Values: number greater than 1
rating Description: Search for the specified rating range. The rating is the list owner's rating not site wide rating.
Values: range of int i.e. 8-10 (convert Letterboxd stars to a 10 point scale)
year Description: Search for the specified year range.
Values: range of int i.e. 1990-1999
note Description: Search for the specified value in the note. The note is the list owner's note not site wide note.
Values: Any String

The sync_mode: sync and collection_order: custom Setting are recommended since the lists are continuously updated and in a specific order.

Using the limit filter attribute is recommended when using a Letterboxd Film Search as the number of results returned could be very large.

Filter Support Depends on URL Type

The year filter works for both standard list URLs and /films/... URLs.

The rating and note filters are only available for /films/... URLs exposed through letterboxdpy. Standard user list URLs do not expose per-item owner ratings or notes, so those filters are ignored for those URLs.

Details Builder

You can replace letterboxd_list with letterboxd_list_details if you would like to fetch and use the description from the list

Example Letterboxd List Builder(s)

collections:
  Vulture’s 101 Best Movie Endings:
    letterboxd_list: https://letterboxd.com/brianformo/list/vultures-101-best-movie-endings/
    collection_order: custom
    sync_mode: sync
  • You can update the collection details with the Letterboxd List's description by using letterboxd_list_details.
  • You can specify multiple collections in letterboxd_list_details but it will only use the first one to update the collection summary.
collections:
  Vulture’s 101 Best Movie Endings:
    letterboxd_list_details: https://letterboxd.com/brianformo/list/vultures-101-best-movie-endings/
    collection_order: custom
    sync_mode: sync
collections:
  Vulture’s 101 Best Movie Endings From the 90s:
    letterboxd_list_details: 
      url: https://letterboxd.com/brianformo/list/vultures-101-best-movie-endings/
      year: 1990-1999
    collection_order: custom
    sync_mode: sync