Endpoint Playground
Test Crawlora's Letterboxd Person 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/person/<slug>?role=actor" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Letterboxd person slug | |
| role | string | No | actor | Credit role, default actor |
| limit | integer | No | Max films, default 10, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "bong-joon-ho",
"role": "director",
"name": "Bong Joon Ho",
"films": [
{
"slug": "parasite-2019",
"title": "Parasite",
"uri": "https://letterboxd.com/film/parasite-2019/"
},
{
"slug": "mickey-17",
"title": "Mickey 17",
"uri": "https://letterboxd.com/film/mickey-17/"
},
{
"slug": "memories-of-murder",
"title": "Memories of Murder",
"uri": "https://letterboxd.com/film/memories-of-murder/"
}
],
"source_url": "https://letterboxd.com/director/bong-joon-ho/"
}
}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 person's Letterboxd filmography for a credit role. Credential-free public Letterboxd data.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "bong-joon-ho",
"role": "director",
"name": "Bong Joon Ho",
"films": [
{
"slug": "parasite-2019",
"title": "Parasite",
"uri": "https://letterboxd.com/film/parasite-2019/"
},
{
"slug": "mickey-17",
"title": "Mickey 17",
"uri": "https://letterboxd.com/film/mickey-17/"
},
{
"slug": "memories-of-murder",
"title": "Memories of Murder",
"uri": "https://letterboxd.com/film/memories-of-murder/"
}
],
"source_url": "https://letterboxd.com/director/bong-joon-ho/"
}
}curl "https://api.crawlora.net/api/v1/letterboxd/person/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"