{"id":18859093,"url":"https://github.com/zeriodev/letterboxd-scraper","last_synced_at":"2025-04-14T12:13:33.903Z","repository":{"id":168788910,"uuid":"644562394","full_name":"ZerioDev/Letterboxd-scraper","owner":"ZerioDev","description":"A scraper for the Letterboxd website.","archived":false,"fork":false,"pushed_at":"2023-05-24T22:26:54.000Z","size":19,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-14T12:13:28.393Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ZerioDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-23T19:30:11.000Z","updated_at":"2024-02-11T16:14:31.000Z","dependencies_parsed_at":"2023-07-06T14:00:24.247Z","dependency_job_id":null,"html_url":"https://github.com/ZerioDev/Letterboxd-scraper","commit_stats":null,"previous_names":["zeriodev/letterboxd-scraper"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZerioDev%2FLetterboxd-scraper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZerioDev%2FLetterboxd-scraper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZerioDev%2FLetterboxd-scraper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZerioDev%2FLetterboxd-scraper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZerioDev","download_url":"https://codeload.github.com/ZerioDev/Letterboxd-scraper/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248877960,"owners_count":21176244,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-08T04:16:08.402Z","updated_at":"2025-04-14T12:13:33.897Z","avatar_url":"https://github.com/ZerioDev.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Letterboxd Scraper\n\nA NPM module that will allow you to retrieve information from the [Letterboxd](https://letterboxd.com) website.\n\n*If you don't have any development knowledge, it is recommended to join the Discord support server to get help.*\n\n### ⚠️ Project under construction\n\nFollow the progress on the [Discord](https://discord.gg/5cGSYV8ZZj) server.\n\nAny bug issue should be reported. Any suggestions for improvement or new features are appreciated.\n\n### 🧩 An easy to use module\n\nSome examples with all features are available on [GitHub](https://github.com/ZerioDev/Letterboxd-scraper/tree/main/test).\n\n\n| Feature | Requested | Details |\n| ------|-----|-----|\n| searchMovie | Name of a movie | Search a movie |\n| searchUser | Name of a Letterboxd user | Search a Letterboxd user |\n| searchPodcast | Name of a podcast | Find a podcast |\n| searchList | Name of a Letterboxd list | Find a Letterboxd list |\n| getMovie | Name of a movie / Letterboxd movie URL | More information on a movie |\n| getProfile | Name of a Letterboxd user | More information on a Letterboxd user |\n\n### 📌 Examples\n\nSearch for a movie :\n\n```js\nconst scraper = require('letterboxd-scraper');\n\nscraper.searchMovie('The Basketball')\n    .then((items) =\u003e console.log(items))\n    .catch((error) =\u003e console.log(error));\n```\n\nResponse :\n\n```\n[\n  {\n    id: 163198,\n    url: 'https://letterboxd.com/film/the-land-of-basketball-1995-2005/',\n    name: 'The Land of Basketball 1995-2005',\n    date: '2008',\n    text: 'Original title: Zemlja košarke 1995-2005  Alternative title: Zemlja kosarke',\n    directed: [],\n    image: { width: '70', height: '105' }\n  },\n  {\n    id: 557093,\n    url: 'https://letterboxd.com/film/basketball-water-and-the-lost-city-of-elbowoods/',\n    name: 'Basketball, Water and the Lost City of Elbowoods',\n    date: '2019',\n    text: null,\n    directed: [],\n    image: { width: '70', height: '105' }\n  },\n  {\n    id: 706715,\n    url: 'https://letterboxd.com/film/something-in-the-water-a-kinston-basketball-story/',\n    name: 'Something In The Water: A Kinston Basketball Story',\n    date: '2020',\n    text: null,\n    directed: [ 'Marcus Mizelle' ],\n    image: { width: '70', height: '105' }\n  }\n]\n```\n\nGet a movie :\n\n```js\nconst scraper = require('letterboxd-scraper');\n\n//With URL\nscraper.getMovie('https://letterboxd.com/film/the-basketball-diaries')\n    .then((items) =\u003e console.log(items))\n    .catch((error) =\u003e console.log(error));\n\n//With name\nscraper.getMovie('The Basketball Diaries')\n    .then((items) =\u003e console.log(items))\n    .catch((error) =\u003e console.log(error));\n```\n\nResponse :\n\n```\n{\n  name: 'The Basketball Diaries',\n  date: '1995',\n  trailer: 'https://www.youtube.com/embed/W5eVnwe6Pxs?rel=0\u0026wmode=transparent',\n  description: {\n    synopsis: 'The true story of the death of innocence and the birth of an artist.',\n    summary: \"Film adaptation of street tough Jim Carroll's epistle about his kaleidoscopic free fall into the harrowing world of drug addiction.\"\n  }\n}\n```\n\nRealized with ❤️ by [ZerioDev](https://github.com/ZerioDev), follow me on [Letterboxd](https://letterboxd.com/juulienn).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeriodev%2Fletterboxd-scraper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeriodev%2Fletterboxd-scraper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeriodev%2Fletterboxd-scraper/lists"}