Endpoint Playground
Test Crawlora's JustWatch Episode Offers 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/episode/offers?id=te21470&countries=US&language=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | te21470 | Raw JustWatch episode id matching tse[0-9]+ |
| countries | string | No | US | One to five comma-separated two-letter country codes |
| language | string | No | en | Two-letter language code |
{
"code": 200,
"msg": "OK",
"data": {
"id": "tse5550494",
"language": "en",
"countries": [
{
"country": "US",
"offers": [
{
"provider": "Amazon Video",
"monetization_type": "BUY",
"presentation_type": "HD",
"price": 1.99,
"currency": "USD"
}
]
}
]
}
}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 normalized offers for a raw JustWatch episode id across one to five comma-separated country codes.
{
"code": 200,
"msg": "OK",
"data": {
"id": "tse5550494",
"language": "en",
"countries": [
{
"country": "US",
"offers": [
{
"provider": "Amazon Video",
"monetization_type": "BUY",
"presentation_type": "HD",
"price": 1.99,
"currency": "USD"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/episode/offers?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"