Endpoint Playground
Test Crawlora's JustWatch Provider 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/provider/titles?provider=nfx&country=US&language=en&limit=10&type=movie" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| provider | string | Yes | nfx | JustWatch provider short name |
| 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": {
"provider": "nfx",
"country": "US",
"language": "en",
"type": "all",
"results": [
{
"id": "ts296145",
"object_type": "SHOW",
"title": "Beef",
"year": 2023,
"path": "/us/tv-show/beef"
}
]
}
}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 movie/show titles available through a JustWatch provider short name such as `nfx`.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "nfx",
"country": "US",
"language": "en",
"type": "all",
"results": [
{
"id": "ts296145",
"object_type": "SHOW",
"title": "Beef",
"year": 2023,
"path": "/us/tv-show/beef"
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/provider/titles?provider=<provider>" \
-H "x-api-key: $CRAWLORA_API_KEY"