Endpoint Playground
Test Crawlora's Letterboxd Film 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>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Letterboxd film slug |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "parasite-2019",
"title": "Parasite",
"year": 2019,
"release_date": "2019-05-21",
"synopsis": "All unemployed, Ki-taek's family takes peculiar interest in the wealthy and glamorous Parks for their livelihood until they get entangled in an unexpected incident.",
"runtime_minutes": 133,
"directors": [
{
"name": "Bong Joon Ho",
"slug": "bong-joon-ho"
}
],
"cast": [
{
"name": "Song Kang-ho",
"slug": "song-kang-ho"
},
{
"name": "Lee Sun-kyun",
"slug": "lee-sun-kyun"
}
],
"genres": [
"Thriller",
"Comedy",
"Drama"
],
"countries": [
"South Korea"
],
"languages": [
"en",
"de",
"ko"
],
"production_companies": [
"Barunson E&A"
],
"poster_url": "https://a.ltrbxd.com/resized/film-poster/4/2/6/4/0/6/426406-parasite-0-600-0-900-crop.jpg",
"rating": {
"average": 4.52,
"count": 5553202,
"review_count": 740173
},
"uri": "https://letterboxd.com/film/parasite-2019/",
"source_url": "https://letterboxd.com/film/parasite-2019/"
}
}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 normalized Letterboxd film: synopsis, director, cast, genres, countries, languages, runtime, and aggregate member rating. Credential-free public Letterboxd data (letterboxd.com), parsed from the film page's schema.org structured data.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "parasite-2019",
"title": "Parasite",
"year": 2019,
"release_date": "2019-05-21",
"synopsis": "All unemployed, Ki-taek's family takes peculiar interest in the wealthy and glamorous Parks for their livelihood until they get entangled in an unexpected incident.",
"runtime_minutes": 133,
"directors": [
{
"name": "Bong Joon Ho",
"slug": "bong-joon-ho"
}
],
"cast": [
{
"name": "Song Kang-ho",
"slug": "song-kang-ho"
},
{
"name": "Lee Sun-kyun",
"slug": "lee-sun-kyun"
}
],
"genres": [
"Thriller",
"Comedy",
"Drama"
],
"countries": [
"South Korea"
],
"languages": [
"en",
"de",
"ko"
],
"production_companies": [
"Barunson E&A"
],
"poster_url": "https://a.ltrbxd.com/resized/film-poster/4/2/6/4/0/6/426406-parasite-0-600-0-900-crop.jpg",
"rating": {
"average": 4.52,
"count": 5553202,
"review_count": 740173
},
"uri": "https://letterboxd.com/film/parasite-2019/",
"source_url": "https://letterboxd.com/film/parasite-2019/"
}
}curl "https://api.crawlora.net/api/v1/letterboxd/film/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"