{
  "openapi": "3.0.1",
  "info": {
    "title": "Letterboxd API Scraper",
    "description": "Scrape Letterboxd public film data: search & browse films, full film detail (genres, directors, rating, description, poster), popular reviews, list films, and optional statistics (watches/likes/ratings/fans + rating histogram). Read-only, guest access, no account.",
    "version": "0.0",
    "x-build-id": "nKFdwDRf7kB2RFzKJ"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/rl1987~letterboxd-api-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-rl1987-letterboxd-api-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/rl1987~letterboxd-api-scraper/runs": {
      "post": {
        "operationId": "runs-sync-rl1987-letterboxd-api-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/rl1987~letterboxd-api-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-rl1987-letterboxd-api-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "mode": {
            "title": "Mode",
            "enum": [
              "search",
              "browse",
              "film",
              "reviews",
              "listEntries"
            ],
            "type": "string",
            "description": "What to scrape. Search and Browse return films; Film details fetches full records for given films; Film reviews returns popular reviews for one film; List films returns the films in a Letterboxd list. Default: Browse films (returns popular films with no other input needed).",
            "default": "browse"
          },
          "includeStatistics": {
            "title": "Include film statistics",
            "type": "boolean",
            "description": "For every film returned, also fetch its statistics — average rating and counts of watches, likes, ratings, fans, lists and reviews, plus the rating histogram. Adds one request per film.",
            "default": false
          },
          "query": {
            "title": "Search query",
            "type": "string",
            "description": "Search mode: film title or keywords (e.g. 'fight club')."
          },
          "genre": {
            "title": "Genre",
            "enum": [
              "8G",
              "9k",
              "8m",
              "7I",
              "9Y",
              "ai",
              "7S",
              "8w",
              "82",
              "90",
              "aC",
              "b6",
              "aW",
              "8c",
              "9a",
              "a8",
              "1hO",
              "9u",
              "8Q"
            ],
            "type": "string",
            "description": "Browse mode: filter films by genre."
          },
          "decade": {
            "title": "Decade",
            "type": "string",
            "description": "Browse mode (optional): e.g. '1990' for the 1990s."
          },
          "year": {
            "title": "Year",
            "type": "string",
            "description": "Browse mode (optional): a specific release year, e.g. '1999'."
          },
          "films": {
            "title": "Films (names or URLs)",
            "type": "array",
            "description": "Film details mode: one or more films by title (e.g. 'Parasite') or Letterboxd URL (e.g. https://letterboxd.com/film/parasite/).",
            "items": {
              "type": "string"
            }
          },
          "film": {
            "title": "Film (name or URL)",
            "type": "string",
            "description": "Film reviews mode: the film whose reviews to fetch — by title or Letterboxd URL."
          },
          "list": {
            "title": "List (name or URL)",
            "type": "string",
            "description": "List films mode: the list whose films to fetch — by name or Letterboxd URL."
          },
          "reviewsSort": {
            "title": "Reviews sort",
            "enum": [
              "ReviewPopularity",
              "ReviewPopularityThisWeek",
              "ReviewPopularityThisMonth",
              "ReviewPopularityThisYear",
              "WhenAdded",
              "EntryRatingHighToLow",
              "EntryRatingLowToHigh"
            ],
            "type": "string",
            "description": "Film reviews mode: how to order reviews.",
            "default": "ReviewPopularity"
          },
          "maxItems": {
            "title": "Max items",
            "minimum": 0,
            "type": "integer",
            "description": "Roughly how many items to return (0 = no limit). Pages are up to 100.",
            "default": 100
          },
          "maxConcurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "type": "integer",
            "description": "Max requests processed in parallel.",
            "default": 5
          },
          "maxRequestRetries": {
            "title": "Max request retries",
            "minimum": 0,
            "type": "integer",
            "description": "Retries per request before it is marked failed.",
            "default": 5
          },
          "maxSessionRotations": {
            "title": "Max session rotations",
            "minimum": 0,
            "type": "integer",
            "description": "Retries for a blocked/rate-limited status, each with a fresh session/proxy.",
            "default": 10
          },
          "filmIds": {
            "title": "Film IDs (raw override)",
            "type": "array",
            "description": "Optional advanced override for Film details mode: raw Letterboxd film IDs (e.g. '2a9q'). If set, skips name/URL resolution.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "filmId": {
            "title": "Film ID (raw override)",
            "type": "string",
            "description": "Optional advanced override for Film reviews mode: a raw Letterboxd film ID.",
            "default": ""
          },
          "listId": {
            "title": "List ID (raw override)",
            "type": "string",
            "description": "Optional advanced override for List films mode: a raw Letterboxd list ID.",
            "default": ""
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional. Letterboxd's API is not bot-gated; a proxy is not required.",
            "default": {
              "useApifyProxy": true
            }
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}