Endpoint Playground
Test Crawlora's Letterboxd Film Reviews 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>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Letterboxd film slug | |
| limit | integer | No | Max reviews, default 10, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "parasite-2019",
"reviews": [
{
"username": "philbertdy",
"display_name": "Philbert Dy",
"rating": 4.5,
"liked": true,
"date": "2019-08-14",
"text": "Update: Now in video form. There is a house on a hill, and there are people in it...",
"contains_spoilers": true,
"like_count": 42605,
"comment_count": 246
}
],
"source_url": "https://letterboxd.com/film/parasite-2019/reviews/by/activity/"
}
}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 film's popular reviews (reviewer, rating, date, text, like/comment counts, spoiler flag). Credential-free public Letterboxd data.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "parasite-2019",
"reviews": [
{
"username": "philbertdy",
"display_name": "Philbert Dy",
"rating": 4.5,
"liked": true,
"date": "2019-08-14",
"text": "Update: Now in video form. There is a house on a hill, and there are people in it...",
"contains_spoilers": true,
"like_count": 42605,
"comment_count": 246
}
],
"source_url": "https://letterboxd.com/film/parasite-2019/reviews/by/activity/"
}
}curl "https://api.crawlora.net/api/v1/letterboxd/film/<slug>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"