Endpoint Playground
Test Crawlora's Rotten Tomatoes movie 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/movies?list=movies_in_theaters&sort=popular&limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| list | string | No | movies_in_theaters | Movie browse list: movies_in_theaters, movies_at_home, movies_coming_soon |
| sort | string | No | popular | Sort: popular, newest, top_box_office |
| limit | integer | No | 10 | Rows to return, default 10, max 20 |
{
"code": 200,
"msg": "OK",
"data": {
"list": "movies_in_theaters",
"sort": "popular",
"limit": 3,
"title": "Movies Out Now in Theaters (2026)",
"items": [
{
"position": 1,
"media_type": "Movie",
"title": "Wildwood, NJ",
"path": "/m/wildwood_nj",
"url": "https://www.rottentomatoes.com/m/wildwood_nj",
"date_created": "1994"
}
],
"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 movie rows from Rotten Tomatoes public browse pages using credential-free JSON-LD ItemList data. Supported `list` values are `movies_in_theaters`, `movies_at_home`, and `movies_coming_soon`. Supported `sort` values are `popular`, `newest`, and `top_box_office`; `top_box_office` is only valid with `movies_in_theaters`.
{
"code": 200,
"msg": "OK",
"data": {
"list": "movies_in_theaters",
"sort": "popular",
"limit": 3,
"title": "Movies Out Now in Theaters (2026)",
"items": [
{
"position": 1,
"media_type": "Movie",
"title": "Wildwood, NJ",
"path": "/m/wildwood_nj",
"url": "https://www.rottentomatoes.com/m/wildwood_nj",
"date_created": "1994"
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/rottentomatoes/browse/movies" \
-H "x-api-key: $CRAWLORA_API_KEY"