Endpoint Playground
Test Crawlora's Search JustWatch titles 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/search?query=Inception&country=US&language=en&limit=5" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Inception | Search query |
| country | string | No | US | Two-letter country code |
| language | string | No | en | Two-letter language code |
| limit | integer | No | 5 | Maximum results, defaults to 10 and clamps to 25 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "inception",
"country": "US",
"language": "en",
"results": [
{
"id": "tm92641",
"object_id": 92641,
"object_type": "MOVIE",
"title": "Inception",
"year": 2010,
"path": "/us/movie/inception",
"url": "https://www.justwatch.com/us/movie/inception",
"poster_url": "https://images.justwatch.com/poster/302449148/s718/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.
Searches JustWatch titles using the public credential-free website GraphQL endpoint. Country must be a two-letter ISO code such as `US`; language must be a two-letter code such as `en`.
{
"code": 200,
"msg": "OK",
"data": {
"query": "inception",
"country": "US",
"language": "en",
"results": [
{
"id": "tm92641",
"object_id": 92641,
"object_type": "MOVIE",
"title": "Inception",
"year": 2010,
"path": "/us/movie/inception",
"url": "https://www.justwatch.com/us/movie/inception",
"poster_url": "https://images.justwatch.com/poster/302449148/s718/inception.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"