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