Endpoint Playground
Test Crawlora's Rotten Tomatoes movie 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/movie?path=%2Fm%2Finception&url=https%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Finception" \
-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 |
{
"code": 200,
"msg": "OK",
"data": {
"title": "Inception",
"path": "/m/inception",
"url": "https://www.rottentomatoes.com/m/inception",
"media_type": "Movie",
"critics_score": {
"score_percent": "87%"
},
"audience_score": {
"score_percent": "91%"
},
"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 movie metadata, scorecard data, and representative embedded audience reviews. Pass exactly one of `path` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"title": "Inception",
"path": "/m/inception",
"url": "https://www.rottentomatoes.com/m/inception",
"media_type": "Movie",
"critics_score": {
"score_percent": "87%"
},
"audience_score": {
"score_percent": "91%"
},
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/rottentomatoes/movie" \
-H "x-api-key: $CRAWLORA_API_KEY"