Endpoint Playground
Test Crawlora's Get JustWatch title details 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?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": {
"id": "tm92641",
"object_id": 92641,
"object_type": "MOVIE",
"title": "Inception",
"year": 2010,
"path": "/us/movie/inception",
"url": "https://www.justwatch.com/us/movie/inception",
"genres": [
"Science-Fiction",
"Mystery & Thriller"
],
"offers": [
{
"provider": "Plex",
"monetization_type": "RENT",
"presentation_type": "HD",
"price": 2.99,
"currency": "USD",
"url": "https://watch.plex.tv/movie/inception"
}
]
}
}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 returns normalized metadata and current offers. Pass exactly one of `path` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "tm92641",
"object_id": 92641,
"object_type": "MOVIE",
"title": "Inception",
"year": 2010,
"path": "/us/movie/inception",
"url": "https://www.justwatch.com/us/movie/inception",
"genres": [
"Science-Fiction",
"Mystery & Thriller"
],
"offers": [
{
"provider": "Plex",
"monetization_type": "RENT",
"presentation_type": "HD",
"price": 2.99,
"currency": "USD",
"url": "https://watch.plex.tv/movie/inception"
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/title" \
-H "x-api-key: $CRAWLORA_API_KEY"