Endpoint Playground
Test Crawlora's Rotten Tomatoes episode 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/episode?path=%2Ftv%2Fbreaking_bad%2Fs01%2Fe01&url=https%3A%2F%2Fwww.rottentomatoes.com%2Ftv%2Fbreaking_bad%2Fs01%2Fe01" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | No | /tv/breaking_bad/s01/e01 | Rotten Tomatoes episode path |
| url | string | No | https://www.rottentomatoes.com/tv/breaking_bad/s01/e01 | Absolute https://www.rottentomatoes.com episode URL |
{
"code": 200,
"msg": "OK",
"data": {
"title": "Pilot",
"path": "/tv/breaking_bad/s01/e01",
"url": "https://www.rottentomatoes.com/tv/breaking_bad/s01/e01",
"ems_id": "ccda9549-4dcb-3147-9a2b-1106dcf852f7",
"media_type": "TvEpisode",
"parent_series": {
"title": "Breaking Bad",
"path": "/tv/breaking_bad"
},
"parent_season": {
"title": "Season 1",
"path": "/tv/breaking_bad/s01",
"season_number": 1
},
"season_number": 1,
"episode_number": 1,
"air_date": "2008-01-20",
"video": {
"title": "Breaking Bad: Official Clip - Walter Wants to Cook"
},
"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 episode metadata, scorecard data, parent series/season metadata, and public video metadata from a credential-free public episode page. Pass exactly one of `path` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"title": "Pilot",
"path": "/tv/breaking_bad/s01/e01",
"url": "https://www.rottentomatoes.com/tv/breaking_bad/s01/e01",
"ems_id": "ccda9549-4dcb-3147-9a2b-1106dcf852f7",
"media_type": "TvEpisode",
"parent_series": {
"title": "Breaking Bad",
"path": "/tv/breaking_bad"
},
"parent_season": {
"title": "Season 1",
"path": "/tv/breaking_bad/s01",
"season_number": 1
},
"season_number": 1,
"episode_number": 1,
"air_date": "2008-01-20",
"video": {
"title": "Breaking Bad: Official Clip - Walter Wants to Cook"
},
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/rottentomatoes/episode" \
-H "x-api-key: $CRAWLORA_API_KEY"