Endpoint Playground
Test Crawlora's JustWatch Title Media 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/media?id=tm962&country=US&language=en" \
-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 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "tm92641",
"country": "US",
"language": "en",
"title": "Inception",
"credits": [
{
"role": "ACTOR",
"name": "Leonardo DiCaprio",
"character_name": "Dom Cobb",
"person_id": 1641
}
],
"clips": [
{
"provider": "YOUTUBE",
"external_id": "8hP9D6kZseM",
"url": "https://www.youtube.com/watch?v=8hP9D6kZseM"
}
],
"backdrops": [
{
"url": "https://images.justwatch.com/backdrop/8735151/s1920/inception.jpg"
}
]
}
}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 normalized credits, clips, and backdrops for a raw JustWatch movie/show id such as `tm92641`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "tm92641",
"country": "US",
"language": "en",
"title": "Inception",
"credits": [
{
"role": "ACTOR",
"name": "Leonardo DiCaprio",
"character_name": "Dom Cobb",
"person_id": 1641
}
],
"clips": [
{
"provider": "YOUTUBE",
"external_id": "8hP9D6kZseM",
"url": "https://www.youtube.com/watch?v=8hP9D6kZseM"
}
],
"backdrops": [
{
"url": "https://images.justwatch.com/backdrop/8735151/s1920/inception.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/title/media?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"