Endpoint Playground
Test Crawlora's Rotten Tomatoes TV discovery rows 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/browse/tv?list=tv_series_browse&sort=popular&limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| list | string | No | tv_series_browse | TV browse list: tv_series_browse |
| sort | string | No | popular | Sort: popular, newest |
| limit | integer | No | 10 | Rows to return, default 10, max 20 |
{
"code": 200,
"msg": "OK",
"data": {
"list": "tv_series_browse",
"sort": "popular",
"limit": 3,
"title": "Best TV Shows (June 2026)",
"items": [
{
"position": 1,
"media_type": "TVSeries",
"title": "Spider-Noir",
"path": "/tv/spider_noir",
"url": "https://www.rottentomatoes.com/tv/spider_noir",
"date_created": "2026-05-27",
"tomatometer_score": 91,
"critics_review_count": 96
}
],
"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 TV series rows from Rotten Tomatoes public browse pages using credential-free JSON-LD ItemList data. Supported `list` value is `tv_series_browse`. Supported `sort` values are `popular` and `newest`.
{
"code": 200,
"msg": "OK",
"data": {
"list": "tv_series_browse",
"sort": "popular",
"limit": 3,
"title": "Best TV Shows (June 2026)",
"items": [
{
"position": 1,
"media_type": "TVSeries",
"title": "Spider-Noir",
"path": "/tv/spider_noir",
"url": "https://www.rottentomatoes.com/tv/spider_noir",
"date_created": "2026-05-27",
"tomatometer_score": 91,
"critics_review_count": 96
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/rottentomatoes/browse/tv" \
-H "x-api-key: $CRAWLORA_API_KEY"