Letterboxd Scraper

ENDPOINTS
GET/films/collection

Film Collection

Every film in a franchise or collection, with ratings and posters.

QUERY PARAMS

Collection slug or URL.

Examples:

  • Slug: the-dark-knight-collection
  • URL: https://letterboxd.com/films/in/the-dark-knight-collection/

Sort order.

Default: release-earliest

Allowed values: popular, popular-week, popular-month, popular-year, rating, rating-lowest, release, release-earliest, name, longest, shortest

Page number.

Default: 1

{
  "count": 3,
  "per_page": 72,
  "current_page": 1,
  "total_pages": 1,
  "next": null,
  "previous": null,
  "collection": {
    "slug": "the-dark-knight-collection",
    "name": "The Dark Knight Collection",
    "link": "https://letterboxd.com/films/in/the-dark-knight-collection/"
  },
  "sort": "release-earliest",
  "films": [
    {
      "id": 51784,
      "slug": "batman-begins",
      "name": "Batman Begins",
      "year": 2005,
      "link": "https://letterboxd.com/film/batman-begins/",
      "short_link": "https://boxd.it/2aIg",
      "poster": {
        "link": "https://a.ltrbxd.com/resized/film-poster/5/1/7/8/4/51784-batman-begins-0-500-0-750-crop.jpg?v=f090edc352",
        "large_link": "https://a.ltrbxd.com/resized/film-poster/5/1/7/8/4/51784-batman-begins-0-1000-0-1500-crop.jpg?v=f090edc352"
      },
      "average_rating": 3.85
    },
    {
      "id": 51896,
      "slug": "the-dark-knight",
      "name": "The Dark Knight",
      "year": 2008,
      "link": "https://letterboxd.com/film/the-dark-knight/",
      "short_link": "https://boxd.it/2b0k",
      "poster": {
        "link": "https://a.ltrbxd.com/resized/sm/upload/78/y5/zg/ej/oefdD26aey8GPdx7Rm45PNncJdU-0-500-0-750-crop.jpg?v=2d0ce4be25",
        "large_link": "https://a.ltrbxd.com/resized/sm/upload/78/y5/zg/ej/oefdD26aey8GPdx7Rm45PNncJdU-0-1000-0-1500-crop.jpg?v=2d0ce4be25"
      },
      "average_rating": 4.5
    },
    {
      "id": 16550,
      "slug": "the-dark-knight-rises",
      "name": "The Dark Knight Rises",
      "year": 2012,
      "link": "https://letterboxd.com/film/the-dark-knight-rises/",
      "short_link": "https://boxd.it/H3m",
      "poster": {
        "link": "https://a.ltrbxd.com/resized/film-poster/1/6/5/5/0/16550-the-dark-knight-rises-0-500-0-750-crop.jpg?v=a7db2d4314",
        "large_link": "https://a.ltrbxd.com/resized/film-poster/1/6/5/5/0/16550-the-dark-knight-rises-0-1000-0-1500-crop.jpg?v=a7db2d4314"
      },
      "average_rating": 3.83
    }
  ]
}