Endpoint Playground
Test Crawlora's Letterboxd Search 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/search?q=<q>&type=film" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Search query | |
| type | string | No | film | Optional result type filter |
| limit | integer | No | Max results, default 10, max 50 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "bong joon ho",
"results": [
{
"type": "person",
"title": "Bong Joon Ho",
"slug": "bong-joon-ho",
"role": "director",
"uri": "https://letterboxd.com/director/bong-joon-ho/"
},
{
"type": "list",
"title": "Bong Joon-ho",
"owner": "SilentDawn",
"uri": "https://letterboxd.com/silentdawn/list/bong-joon-ho/"
},
{
"type": "film",
"title": "Being John Malkovich",
"slug": "being-john-malkovich",
"year": 1999,
"uri": "https://letterboxd.com/film/being-john-malkovich/"
},
{
"type": "tag",
"title": "bong-joon-ho",
"uri": "https://letterboxd.com/tag/bong-joon-ho/"
}
],
"source_url": "https://letterboxd.com/s/search/bong%20joon%20ho/"
}
}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.
Searches Letterboxd films, people, lists, and tags. Credential-free public Letterboxd data.
{
"code": 200,
"msg": "OK",
"data": {
"query": "bong joon ho",
"results": [
{
"type": "person",
"title": "Bong Joon Ho",
"slug": "bong-joon-ho",
"role": "director",
"uri": "https://letterboxd.com/director/bong-joon-ho/"
},
{
"type": "list",
"title": "Bong Joon-ho",
"owner": "SilentDawn",
"uri": "https://letterboxd.com/silentdawn/list/bong-joon-ho/"
},
{
"type": "film",
"title": "Being John Malkovich",
"slug": "being-john-malkovich",
"year": 1999,
"uri": "https://letterboxd.com/film/being-john-malkovich/"
},
{
"type": "tag",
"title": "bong-joon-ho",
"uri": "https://letterboxd.com/tag/bong-joon-ho/"
}
],
"source_url": "https://letterboxd.com/s/search/bong%20joon%20ho/"
}
}curl "https://api.crawlora.net/api/v1/letterboxd/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"