Endpoint Playground
Test Crawlora's IMDb title user 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/imdb/title/reviews?id=tt1375666&url=https%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt1375666%2F&limit=10" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | No | tt1375666 | IMDb title id |
| url | string | No | https://www.imdb.com/title/tt1375666/ | Absolute https://www.imdb.com/title/<id>/ URL |
| limit | integer | No | 10 | Rows to return, default 10, max 20 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "tt1375666",
"limit": 10,
"reviews": [
{
"id": "rw2500001",
"title": "A smart blockbuster",
"rating": 9,
"helpful_votes": 123,
"total_votes": 150,
"spoiler": false
}
],
"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 public IMDb user review rows. Limit defaults to 10 and clamps to 20. Pass exactly one of `id` or `url`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "tt1375666",
"limit": 10,
"reviews": [
{
"id": "rw2500001",
"title": "A smart blockbuster",
"rating": 9,
"helpful_votes": 123,
"total_votes": 150,
"spoiler": false
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/imdb/title/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"