Endpoint Playground
Test Crawlora's JustWatch Discover 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/discover?country=US&language=en&limit=10&type=movie&genres=act%2Cscf&providers=nfx%2Camp&monetization_types=FLATRATE&year_min=2020&year_max=2026" \
-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 |
| genres | string | No | act,scf | Comma-separated JustWatch genre short names |
| providers | string | No | nfx,amp | Comma-separated JustWatch provider short names |
| monetization_types | string | No | FLATRATE | Comma-separated monetization types: FLATRATE, FREE, ADS, RENT, BUY |
| year_min | integer | No | 2020 | Minimum release year |
| year_max | integer | No | 2026 | Maximum release year |
{
"code": 200,
"msg": "OK",
"data": {
"country": "US",
"language": "en",
"type": "all",
"genres": [
"act"
],
"providers": [
"nfx"
],
"monetization_types": [
"FLATRATE"
],
"year_min": 2020,
"year_max": 2026,
"results": [
{
"id": "ts454451",
"object_type": "SHOW",
"title": "Lord of the Flies",
"year": 2026,
"path": "/us/tv-show/lord-of-the-flies"
}
]
}
}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 filtered by optional genre short names, provider short names, monetization types, and release year bounds. Type accepts only `all`, `movie`, or `show`; monetization_types accepts only `FLATRATE`, `FREE`, `ADS`, `RENT`, or `BUY`.
{
"code": 200,
"msg": "OK",
"data": {
"country": "US",
"language": "en",
"type": "all",
"genres": [
"act"
],
"providers": [
"nfx"
],
"monetization_types": [
"FLATRATE"
],
"year_min": 2020,
"year_max": 2026,
"results": [
{
"id": "ts454451",
"object_type": "SHOW",
"title": "Lord of the Flies",
"year": 2026,
"path": "/us/tv-show/lord-of-the-flies"
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/discover" \
-H "x-api-key: $CRAWLORA_API_KEY"