Endpoint Playground
Test Crawlora's JustWatch Title Offers 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/offers?id=tm962&countries=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]+ |
| countries | string | No | US | One to five comma-separated two-letter country codes |
| language | string | No | en | Two-letter language code |
{
"code": 200,
"msg": "OK",
"data": {
"id": "tm92641",
"language": "en",
"countries": [
{
"country": "US",
"title": {
"id": "tm92641",
"title": "Inception"
},
"offers": [
{
"provider": "Amazon Video",
"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.
Returns normalized offers for a raw JustWatch movie/show id across one to five comma-separated country codes.
{
"code": 200,
"msg": "OK",
"data": {
"id": "tm92641",
"language": "en",
"countries": [
{
"country": "US",
"title": {
"id": "tm92641",
"title": "Inception"
},
"offers": [
{
"provider": "Amazon Video",
"monetization_type": "RENT",
"presentation_type": "4K",
"price": 4.99,
"currency": "USD"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/title/offers?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"