Endpoint Playground
Test Crawlora's Rotten Tomatoes season detail 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/rottentomatoes/season?path=%2Ftv%2Fbreaking_bad%2Fs01&url=https%3A%2F%2Fwww.rottentomatoes.com%2Ftv%2Fbreaking_bad%2Fs01" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | No | /tv/breaking_bad/s01 | Rotten Tomatoes season path |
| url | string | No | https://www.rottentomatoes.com/tv/breaking_bad/s01 | Absolute https://www.rottentomatoes.com season URL |
{
"code": 200,
"msg": "OK",
"data": {
"title": "Season 1",
"path": "/tv/breaking_bad/s01",
"url": "https://www.rottentomatoes.com/tv/breaking_bad/s01",
"media_type": "TvSeason",
"parent_series": {
"title": "Breaking Bad",
"path": "/tv/breaking_bad"
},
"episode_count": 7,
"critics_score": {
"score_percent": "86%"
},
"audience_score": {
"score_percent": "95%"
},
"public_page_derived": true
}
}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 Rotten Tomatoes TV season metadata, scorecard data, parent series metadata, and episode rows from a credential-free public season page. Pass exactly one of `path` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"title": "Season 1",
"path": "/tv/breaking_bad/s01",
"url": "https://www.rottentomatoes.com/tv/breaking_bad/s01",
"media_type": "TvSeason",
"parent_series": {
"title": "Breaking Bad",
"path": "/tv/breaking_bad"
},
"episode_count": 7,
"critics_score": {
"score_percent": "86%"
},
"audience_score": {
"score_percent": "95%"
},
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/rottentomatoes/season" \
-H "x-api-key: $CRAWLORA_API_KEY"