Endpoint Playground
Test Crawlora's JustWatch Providers 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/providers?country=US" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country | string | No | US | Two-letter country code |
{
"code": 200,
"msg": "OK",
"data": {
"country": "US",
"providers": [
{
"id": 8,
"clear_name": "Netflix",
"short_name": "nfx",
"technical_name": "netflix",
"icon_url": "https://images.justwatch.com/icon/207360008/s100/netflix.jpg"
}
]
}
}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 the credential-free public JustWatch provider catalog for a country.
{
"code": 200,
"msg": "OK",
"data": {
"country": "US",
"providers": [
{
"id": 8,
"clear_name": "Netflix",
"short_name": "nfx",
"technical_name": "netflix",
"icon_url": "https://images.justwatch.com/icon/207360008/s100/netflix.jpg"
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/providers" \
-H "x-api-key: $CRAWLORA_API_KEY"