Endpoint Playground
Test Crawlora's JustWatch Season Episodes 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/season/episodes?season_id=ts21469-s1&country=US&language=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| season_id | string | Yes | ts21469-s1 | Raw JustWatch season id matching tss[0-9]+ |
| country | string | No | US | Two-letter country code |
| language | string | No | en | Two-letter language code |
{
"code": 200,
"msg": "OK",
"data": {
"country": "US",
"language": "en",
"season": {
"id": "tss297253",
"title": "Season 1",
"season_number": 1
},
"episodes": [
{
"id": "tse5550494",
"object_type": "SHOW_EPISODE",
"title": "Long Day's Journey Into Night",
"episode_number": 1,
"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 episodes and normalized episode offers for a raw JustWatch season id such as `tss297253`.
{
"code": 200,
"msg": "OK",
"data": {
"country": "US",
"language": "en",
"season": {
"id": "tss297253",
"title": "Season 1",
"season_number": 1
},
"episodes": [
{
"id": "tse5550494",
"object_type": "SHOW_EPISODE",
"title": "Long Day's Journey Into Night",
"episode_number": 1,
"offers": [
{
"provider": "Amazon Video",
"monetization_type": "BUY",
"presentation_type": "HD",
"price": 1.99,
"currency": "USD"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/season/episodes?season_id=<season_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"