Powerful IMDB Infinite Review scraper avatar

Powerful IMDB Infinite Review scraper

Under maintenance

Pricing

Pay per usage

Go to Apify Store
Powerful IMDB Infinite Review scraper

Powerful IMDB Infinite Review scraper

Under maintenance

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

jon

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

5 days ago

Last modified

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.movieId
  • request.page
  • review.movieId
  • review.reviewId
  • review.author
  • review.authorRating
  • review.helpfulness.upVotes
  • review.helpfulness.downVotes
  • review.submissionDate
  • review.summary
  • review.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

  • movieId must be an IMDb title ID such as tt0944947.
  • maxPages limits pagination and helps prevent long runs.
  • delaySeconds can be reduced for faster runs, but higher values are safer.