Endpoint Playground
Test Crawlora's JustWatch Title By ID 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/by-id?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",
"object_type": "MOVIE",
"title": "Inception",
"year": 2010,
"path": "/us/movie/inception",
"url": "https://www.justwatch.com/us/movie/inception",
"scoring": {
"imdb_score": 8.8,
"tomato_meter": 87
},
"offers": [
{
"provider": "Amazon Video",
"provider_id": 10,
"provider_short": "amz",
"provider_technical": "amazon",
"monetization_type": "RENT",
"presentation_type": "4K",
"price": 4.99,
"currency": "USD"
}
]
}
}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.
Looks up a movie or show by raw JustWatch GraphQL id such as `tm92641` or `ts287292`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "tm92641",
"object_type": "MOVIE",
"title": "Inception",
"year": 2010,
"path": "/us/movie/inception",
"url": "https://www.justwatch.com/us/movie/inception",
"scoring": {
"imdb_score": 8.8,
"tomato_meter": 87
},
"offers": [
{
"provider": "Amazon Video",
"provider_id": 10,
"provider_short": "amz",
"provider_technical": "amazon",
"monetization_type": "RENT",
"presentation_type": "4K",
"price": 4.99,
"currency": "USD"
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/title/by-id?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"