Endpoint Playground
Test Crawlora's Rotten Tomatoes movie reviews 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/movie/reviews?path=%2Fm%2Finception&url=https%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Finception&type=critics&limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | No | /m/inception | Rotten Tomatoes movie path |
| url | string | No | https://www.rottentomatoes.com/m/inception | Absolute https://www.rottentomatoes.com movie URL |
| type | string | No | critics | Review type: critics, top-critics, audience, verified-audience |
| limit | integer | No | 10 | Reviews to return, default 10, max 20 |
| after | string | No | Pagination cursor from data.page_info.end_cursor |
{
"code": 200,
"msg": "OK",
"data": {
"type": "critics",
"limit": 10,
"page_info": {
"has_next_page": true,
"end_cursor": "eyJ0eXBlIjoiUmV2aWV3In0"
},
"reviews": [
{
"display_name": "Danilo Castro",
"review": "A representative review excerpt."
}
],
"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 critic or audience reviews from Rotten Tomatoes public review JSON hydrated by the movie review page, including pagination metadata. Pass exactly one of `path` or `url`. Supported `type` values are `critics`, `top-critics`, `audience`, and `verified-audience`.
{
"code": 200,
"msg": "OK",
"data": {
"type": "critics",
"limit": 10,
"page_info": {
"has_next_page": true,
"end_cursor": "eyJ0eXBlIjoiUmV2aWV3In0"
},
"reviews": [
{
"display_name": "Danilo Castro",
"review": "A representative review excerpt."
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/rottentomatoes/movie/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"