# Inception Film Ratings and Reviews from Letterboxd

**Use case:** 

Scrape Inception's film ratings and user reviews from Letterboxd. Gain insights with detailed feedback and ratings without needing a login.

## Input

```json
{
  "mode": "film",
  "startUrls": [
    {
      "url": "https://letterboxd.com/film/inception/"
    }
  ],
  "searchQueries": [],
  "filmSort": "popular/this/week",
  "scrapeReviews": true,
  "fetchFullText": true,
  "maxReviews": 100,
  "maxFilms": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "director": {
    "label": "Director(s)",
    "format": "array"
  },
  "averageRating": {
    "label": "Average Rating",
    "format": "number"
  },
  "ratingsCount": {
    "label": "Ratings Count",
    "format": "integer"
  },
  "genres": {
    "label": "Genres",
    "format": "array"
  },
  "runtime": {
    "label": "Runtime",
    "format": "string"
  },
  "filmUrl": {
    "label": "Film URL",
    "format": "string"
  },
  "posterUrl": {
    "label": "Poster URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Letterboxd Film & Review Scraper — Ratings, No Login](https://apify.com/logiover/letterboxd-film-review-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/letterboxd-film-review-scraper) to learn more, explore other use cases, and run it yourself.