Endpoint Playground
Test Crawlora's Letterboxd Popular API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/letterboxd/popular?period=day" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| period | string | No | day | Popularity window, omit for all-time |
| genre | string | No | Genre slug filter | |
| decade | string | No | Decade filter, e.g. 2010s | |
| limit | integer | No | Max films, default 10, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"period": "week",
"films": [
{
"slug": "obsession-2025",
"title": "Obsession",
"uri": "https://letterboxd.com/film/obsession-2025/"
},
{
"slug": "project-hail-mary",
"title": "Project Hail Mary",
"uri": "https://letterboxd.com/film/project-hail-mary/"
}
],
"source_url": "https://letterboxd.com/csi/films/films-browser-list/popular/this/week/?esiAllowFilters=true"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a popularity-ranked film chart, optionally scoped to a time window, genre, and/or decade. Credential-free public Letterboxd data.
{
"code": 200,
"msg": "OK",
"data": {
"period": "week",
"films": [
{
"slug": "obsession-2025",
"title": "Obsession",
"uri": "https://letterboxd.com/film/obsession-2025/"
},
{
"slug": "project-hail-mary",
"title": "Project Hail Mary",
"uri": "https://letterboxd.com/film/project-hail-mary/"
}
],
"source_url": "https://letterboxd.com/csi/films/films-browser-list/popular/this/week/?esiAllowFilters=true"
}
}curl "https://api.crawlora.net/api/v1/letterboxd/popular" \
-H "x-api-key: $CRAWLORA_API_KEY"