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&production_countries=KR%2CJP&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 |
| production_countries | string | No | KR,JP | Comma-separated two-letter ISO production-country codes |
| 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": "TW",
"language": "zh",
"type": "show",
"providers": [
"nfx"
],
"production_countries": [
"KR"
],
"results": [
{
"id": "ts287292",
"object_type": "SHOW",
"title": "魷魚遊戲",
"year": 2021,
"path": "/tw/tv-show/squid-game",
"production_countries": [
"KR"
]
}
]
}
}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, production countries, monetization types, and release year bounds. Combine `providers` with `production_countries` to build charts such as most popular Korean or Japanese titles on a given service. Type accepts only `all`, `movie`, or `show`; monetization_types accepts only `FLATRATE`, `FREE`, `ADS`, `RENT`, or `BUY`.
{
"code": 200,
"msg": "OK",
"data": {
"country": "TW",
"language": "zh",
"type": "show",
"providers": [
"nfx"
],
"production_countries": [
"KR"
],
"results": [
{
"id": "ts287292",
"object_type": "SHOW",
"title": "魷魚遊戲",
"year": 2021,
"path": "/tw/tv-show/squid-game",
"production_countries": [
"KR"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/discover" \
-H "x-api-key: $CRAWLORA_API_KEY"