Endpoint Playground
Test Crawlora's Letterboxd Film Similar 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/film/<slug>/similar" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Letterboxd film slug | |
| limit | integer | No | Max films, default 10, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "parasite-2019",
"films": [
{
"slug": "no-other-choice-2025",
"title": "No Other Choice",
"uri": "https://letterboxd.com/film/no-other-choice-2025/"
},
{
"slug": "the-housemaid",
"title": "The Housemaid",
"uri": "https://letterboxd.com/film/the-housemaid/"
}
],
"source_url": "https://letterboxd.com/film/parasite-2019/similar/"
}
}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 films Letterboxd recommends as similar to the given film. Credential-free public Letterboxd data.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "parasite-2019",
"films": [
{
"slug": "no-other-choice-2025",
"title": "No Other Choice",
"uri": "https://letterboxd.com/film/no-other-choice-2025/"
},
{
"slug": "the-housemaid",
"title": "The Housemaid",
"uri": "https://letterboxd.com/film/the-housemaid/"
}
],
"source_url": "https://letterboxd.com/film/parasite-2019/similar/"
}
}curl "https://api.crawlora.net/api/v1/letterboxd/film/<slug>/similar" \
-H "x-api-key: $CRAWLORA_API_KEY"