Endpoint Playground
Test Crawlora's JustWatch Title 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/justwatch/title/similar?id=tm962&country=US&language=en&limit=6" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | tm962 | Raw JustWatch movie/show id matching tm[0-9]+ or ts[0-9]+ |
| country | string | No | US | Two-letter country code |
| language | string | No | en | Two-letter language code |
| limit | integer | No | 6 | Maximum results, defaults to 10 and clamps to 25 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "tm92641",
"country": "US",
"language": "en",
"results": [
{
"id": "tm455670",
"object_type": "MOVIE",
"title": "Tenet",
"year": 2020,
"path": "/us/movie/tenet"
}
]
}
}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 similar titles for a raw JustWatch movie/show id such as `tm92641`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "tm92641",
"country": "US",
"language": "en",
"results": [
{
"id": "tm455670",
"object_type": "MOVIE",
"title": "Tenet",
"year": 2020,
"path": "/us/movie/tenet"
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/title/similar?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"