Endpoint Playground
Test Crawlora's Analyze JustWatch title availability 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/analysis?path=%2Fus%2Fmovie%2Finception&url=https%3A%2F%2Fwww.justwatch.com%2Fus%2Fmovie%2Finception" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | No | /us/movie/inception | JustWatch title path |
| url | string | No | https://www.justwatch.com/us/movie/inception | Absolute https://www.justwatch.com title URL |
{
"code": 200,
"msg": "OK",
"data": {
"title": {
"id": "tm92641",
"title": "Inception",
"path": "/us/movie/inception"
},
"summary": {
"available": true,
"total_offers": 15,
"provider_count": 6,
"monetization_counts": {
"BUY": 7,
"RENT": 8
},
"format_counts": {
"4K": 4,
"HD": 5
},
"price_ranges": {
"RENT": {
"min": 2.99,
"max": 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.
Fetches a JustWatch title page and summarizes provider availability, monetization buckets, formats, price ranges, and best rent/buy/free/subscription options. Pass exactly one of `path` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"title": {
"id": "tm92641",
"title": "Inception",
"path": "/us/movie/inception"
},
"summary": {
"available": true,
"total_offers": 15,
"provider_count": 6,
"monetization_counts": {
"BUY": 7,
"RENT": 8
},
"format_counts": {
"4K": 4,
"HD": 5
},
"price_ranges": {
"RENT": {
"min": 2.99,
"max": 4.99,
"currency": "USD"
}
}
}
}
}curl "https://api.crawlora.net/api/v1/justwatch/title/analysis" \
-H "x-api-key: $CRAWLORA_API_KEY"