Endpoint Playground
Test Crawlora's JustWatch Show Seasons 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/show/seasons?show_id=ts21469&country=US&language=en" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| show_id | string | Yes | ts21469 | Raw JustWatch show id matching ts[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",
"show": {
"id": "ts287292",
"title": "FROM"
},
"seasons": [
{
"id": "tss297253",
"object_type": "SHOW_SEASON",
"title": "Season 1",
"season_number": 1,
"path": "/us/tv-show/from/season-1",
"url": "https://www.justwatch.com/us/tv-show/from/season-1"
}
]
}
}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 seasons for a raw JustWatch show id such as `ts287292`.
{
"code": 200,
"msg": "OK",
"data": {
"country": "US",
"language": "en",
"show": {
"id": "ts287292",
"title": "FROM"
},
"seasons": [
{
"id": "tss297253",
"object_type": "SHOW_SEASON",
"title": "Season 1",
"season_number": 1,
"path": "/us/tv-show/from/season-1",
"url": "https://www.justwatch.com/us/tv-show/from/season-1"
}
]
}
}curl "https://api.crawlora.net/api/v1/justwatch/show/seasons?show_id=<show_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"