Endpoint Playground
Test Crawlora's Rotten Tomatoes person 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/person?path=%2Fcelebrity%2Fchristopher_nolan&url=https%3A%2F%2Fwww.rottentomatoes.com%2Fcelebrity%2Fchristopher_nolan" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | No | /celebrity/christopher_nolan | Rotten Tomatoes person path |
| url | string | No | https://www.rottentomatoes.com/celebrity/christopher_nolan | Absolute https://www.rottentomatoes.com person URL |
{
"code": 200,
"msg": "OK",
"data": {
"name": "Christopher Nolan",
"path": "/celebrity/christopher_nolan",
"url": "https://www.rottentomatoes.com/celebrity/christopher_nolan",
"ems_id": "a015d515-713e-38e3-abbe-cf0cdaa519b0",
"birth_date": "1970-07-30",
"birthplace": "London, England, UK",
"highest_rated": {
"title": "The Dark Knight",
"path": "/m/the_dark_knight",
"score": 94,
"year": "2008"
},
"filmography": [
{
"title": "Oppenheimer",
"path": "/m/oppenheimer_2023",
"credits": "Director, Screenwriter, Producer",
"critics_score": {
"score_percent": "93%"
}
}
],
"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 celebrity/person metadata and filmography rows from public Person JSON-LD and the credential-free filmography module. Pass exactly one of `path` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"name": "Christopher Nolan",
"path": "/celebrity/christopher_nolan",
"url": "https://www.rottentomatoes.com/celebrity/christopher_nolan",
"ems_id": "a015d515-713e-38e3-abbe-cf0cdaa519b0",
"birth_date": "1970-07-30",
"birthplace": "London, England, UK",
"highest_rated": {
"title": "The Dark Knight",
"path": "/m/the_dark_knight",
"score": 94,
"year": "2008"
},
"filmography": [
{
"title": "Oppenheimer",
"path": "/m/oppenheimer_2023",
"credits": "Director, Screenwriter, Producer",
"critics_score": {
"score_percent": "93%"
}
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/rottentomatoes/person" \
-H "x-api-key: $CRAWLORA_API_KEY"