Endpoint Playground
Test Crawlora's JustWatch Monetization 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/monetization/titles?monetization_type=FLATRATE&country=US&language=en&limit=10&type=movie" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| monetization_type | string | Yes | FLATRATE | Monetization type: FLATRATE, FREE, ADS, RENT, BUY |
| 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": {
"monetization_type": "FLATRATE",
"country": "US",
"language": "en",
"type": "all",
"results": [
{
"id": "tm92641",
"object_type": "MOVIE",
"title": "Inception",
"year": 2010,
"path": "/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 titles for one monetization type. monetization_type accepts only `FLATRATE`, `FREE`, `ADS`, `RENT`, or `BUY`; type accepts only `all`, `movie`, or `show`.
{
"code": 200,
"msg": "OK",
"data": {
"monetization_type": "FLATRATE",
"country": "US",
"language": "en",
"type": "all",
"results": [
{
"id": "tm92641",
"object_type": "MOVIE",
"title": "Inception",
"year": 2010,
"path": "/us/movie/inception"
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/monetization/titles?monetization_type=<monetization_type>" \
-H "x-api-key: $CRAWLORA_API_KEY"