Endpoint Playground
Test Crawlora's JustWatch Popular 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/popular?country=US&language=en&limit=10&type=movie" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country | string | No | US | Two-letter country code |
| language | string | No | en | Two-letter language code |
| limit | integer | No | 10 | Maximum results, defaults to 20 and clamps to 50 |
| type | string | No | movie | Title type: all, movie, show |
{
"code": 200,
"msg": "OK",
"data": {
"country": "US",
"language": "en",
"type": "all",
"results": [
{
"id": "tm92641",
"object_type": "MOVIE",
"title": "Inception",
"year": 2010,
"path": "/us/movie/inception",
"url": "https://www.justwatch.com/us/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.
Returns popular movies and shows from the public JustWatch website GraphQL endpoint. Type accepts only `all`, `movie`, or `show`; limit defaults to 20 and clamps to 50.
{
"code": 200,
"msg": "OK",
"data": {
"country": "US",
"language": "en",
"type": "all",
"results": [
{
"id": "tm92641",
"object_type": "MOVIE",
"title": "Inception",
"year": 2010,
"path": "/us/movie/inception",
"url": "https://www.justwatch.com/us/movie/inception"
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/popular" \
-H "x-api-key: $CRAWLORA_API_KEY"