Powerful IMDB Infinite Review scraper
Pricing
Pay per usage
Powerful IMDB Infinite Review scraper
A powerful and fast IMDb review scraper that collects structured user reviews by title ID, including ratings, authors, review text, helpfulness votes, and submission dates.
Pricing
Pay per usage
Rating
0.0
(0)
Developer

jon
Actor stats
0
Bookmarked
1
Total users
0
Monthly active users
5 days ago
Last modified
Categories
Share
IMDb Reviews Scraper
A powerful and fast IMDb review scraper that collects structured user reviews by title ID, including ratings, authors, review text, helpfulness votes, and submission dates.
Overview
This Actor fetches IMDb user reviews through IMDb's public GraphQL review flow and returns normalized dataset items for each review.
It is designed for:
- review analysis
- sentiment workflows
- competitor research
- content monitoring
- downstream data pipelines
What You Get
Each dataset item includes:
request.movieIdrequest.pagereview.movieIdreview.reviewIdreview.authorreview.authorRatingreview.helpfulness.upVotesreview.helpfulness.downVotesreview.submissionDatereview.summaryreview.reviewText
Input
The Actor requires movieId.
Example:
{"movieId": "tt0944947","maxPages": 1,"sortBy": "HELPFULNESS_SCORE","sortOrder": "DESC","delaySeconds": 0,"includeRawPage": false,"failOnError": false}
Output
Example dataset item:
{"request": {"movieId": "tt0944947","page": 1},"review": {"movieId": "tt0944947","reviewId": "rw1234567","author": "example_user","authorRating": 9,"helpfulness": {"upVotes": 120,"downVotes": 8},"submissionDate": "2024-01-15","summary": "Strong season opener","reviewText": "Full review text..."}}
The Actor also stores an OUTPUT record in the default key-value store with processed title counts, review counts, and any failures.
Notes
movieIdmust be an IMDb title ID such astt0944947.maxPageslimits pagination and helps prevent long runs.delaySecondscan be reduced for faster runs, but higher values are safer.