ParseForge Scrapers

Goodreads Reviews Scraper

parseforge/goodreads-reviews-scraper

AutomationDeveloper toolsSEO tools

Scrapes Goodreads book reviews by book ID or direct URL. Returns each review as a flat row with reviewer name, star rating, full text, and date.

Run this scraper See the API call
Total users
34
Monthly active
2
Total runs
327
Bookmarked
2
Rating
5.0 (1)
Last modified
12 days ago

Overview

ParseForge

Goodreads Reviews Scraper

Scrape Goodreads book reviews by book ID or direct URL, up to a million per run. Every review returns the rating, reviewer name, full text, and date. No login or API key. Export to CSV, JSON, Excel, or XML.

Goodreads has no official public API for reviews, and the retired API required developer keys and had strict limits. This actor reads the public review pages directly, filtered by star rating or sort order when you use a book ID, and returns each match in one fixed schema.

Who uses it What they scrape Goodreads for
Authors and publishers Monitor reader sentiment and rating distributions for a new release.
Book marketers Collect social proof quotes and identify influential reviewers for outreach.
Literary researchers Analyze review language and trends across a genre or time period.
Data analysts Build datasets of reader opinions for sentiment analysis or recommendation models.

What it does

This Actor collects Goodreads book reviews by book ID or direct URL and returns each one as a flat row.

  • โญ Rating filter: pull only 1-star rants or 5-star raves by setting the rating field.
  • ๐Ÿ“… Sort control: order reviews by default, rating, or date added when scraping by book ID.
  • ๐Ÿ”— Direct URL mode: paste any Goodreads reviews page URL and the actor follows its filters exactly.

Results export to CSV, JSON, Excel, or XML, or straight from the API.

What you can do with Goodreads data

๐Ÿ“ˆ Track reader sentiment over time.

An author scrapes reviews for their latest book sorted by date added every month to see how reader opinions shift after launch.

๐Ÿ“š Build a review dataset for analysis.

A data scientist scrapes 50,000 reviews across a genre by book ID, filters for 1- and 5-star ratings, and trains a sentiment classifier on the text.

๐Ÿ“ฃ Find authentic quotes for marketing.

A publisher scrapes 4- and 5-star reviews for a backlist title, filters by rating, and pulls compelling reader quotes for social media ads.

๐Ÿ” Audit review authenticity.

A researcher scrapes all reviews for a suspiciously popular book, sorts by date, and examines patterns in reviewer accounts and text similarity.

Why choose this scraper

What you get
Reviewer name and profile URL Know who wrote each review and link back to their Goodreads profile.
Star rating Quantitative sentiment at a glance, filterable before scraping.
Full review text The complete body of the review, ready for NLP or manual reading.
Review date Track how opinions change over time or focus on a specific period.

How it compares

This actor focuses exclusively on reviews with a clean input model, while other Goodreads scrapers on Apify often bundle books, ISBNs, or search into one tool.

Feature ParseForge Goodreads Review Scraper ๐Ÿ“š Goodreads Books, ISBN & Reviews Scraper API ๐Ÿ“š Goodreads Book Scraper
Scrapes reviews only Yes Yes Not listed Not listed
Filter reviews by star rating Yes Not listed Not listed Not listed
Sort reviews by date or rating Yes Not listed Not listed Not listed
Direct reviews URL input Yes Not listed Not listed Not listed
Scrapes book metadata Not listed Not listed Yes Yes
ISBN lookup Not listed Not listed Yes Not listed

Configure the run

Drive the Actor from a book ID with optional rating and sort filters, or from a direct reviews URL, and filters run as each review is read so only matches reach your dataset. The Input tab lists every parameter.

A first run with the defaults:

{
  "maxItems": 10,
  "bookId": "4671"
}

A larger pull:

{
  "maxItems": 200,
  "bookId": "4671"
}

Pricing

Pay-per-result: $0.16 per result collected. You pay only for the results written to your dataset.

Results collected Approximate cost
100 results $16.00
1,000 results $160.00
10,000 results $1600.00

New Apify accounts start with $5 in free credit.

Free users

Free-plan runs return up to 10 results as a preview. Upgrade your Apify plan to collect up to 1,000,000 results per run.

Run it

  1. Create a free Apify account with $5 in credit.
  2. Open the Goodreads Reviews Scraper.
  3. Set your inputs and any filters, then click Start.
  4. Export the results as CSV, Excel, JSON, or XML from the Dataset tab.

Run it programmatically through the Apify API (run-sync-get-dataset-items) or the ApifyClient for JavaScript and Python.

Use with AI agents (MCP)

Give an AI agent live access to Goodreads through the Model Context Protocol. Add the Actor to Claude, Cursor, or any MCP client:

claude mcp add --transport http apify "https://mcp.apify.com?tools=parseforge/goodreads-reviews-scraper"

Then prompt it in plain language to run the scraper and read back the results.

Troubleshooting

Why am I getting no results?

Check that the book ID is correct and that the book has reviews. If you are using a rating filter, try removing it. Some books have no reviews at the selected star level. Also confirm you are not mixing book ID and start URL inputs.

The actor returns fewer reviews than the max items I set.

The actor stops when it runs out of review pages. If a book has only 200 reviews and you set max items to 500, you will get 200. This is expected behavior.

I get an error when using a start URL.

Make sure the URL points directly to a reviews page, like goodreads.com/book/show/4671.The_Great_Gatsby/reviews. A URL to the book's main page without /reviews will not work. Also, do not set bookId, sort, or rating when using startUrl.

The sort or rating filter is not working.

These filters only work when you provide a book ID. If you are using a start URL, the filters in the URL take precedence and the actor input fields for sort and rating are ignored.

Some reviews are missing text.

Goodreads allows ratings without text. If a user leaves a star rating but no written review, the review text field will be empty. This is not a scraping error.

FAQ

Question Answer
Do I need a Goodreads account or API key? No. This actor reads the public review pages that anyone can view in a browser. No login, no API key, and no developer registration are required.
Can I scrape reviews from multiple books in one run? One run handles one book ID or one direct URL. To scrape multiple books, run the actor once per book ID, either manually or by calling the API in a loop.
What is the difference between using a book ID and a start URL? Book ID mode lets you set the sort order and rating filter in the actor input. Start URL mode follows whatever filters are already in the URL you paste, and the sort and rating inputs are ignored.
How do I find a Goodreads book ID? Open the book's main page on Goodreads. The URL looks like goodreads.com/book/show/4671.The_Great_Gatsby. The number after /show/ is the book ID. For the example, it is 4671.
Can I filter reviews by language or spoiler tags? The actor does not have built-in language or spoiler filters. You can apply those filters manually in a Goodreads URL and then use the start URL mode to scrape the pre-filtered page.
What format does the data export to? You can export your dataset to CSV, JSON, Excel, or XML directly from the Apify run detail page.
Is there a limit on how many reviews I can scrape? Free accounts are limited to 10 reviews per run as a preview. Paid accounts can scrape up to 1,000,000 reviews per run.
Does this actor handle pagination automatically? Yes. It follows the pagination links on the reviews page until it reaches your max items limit or there are no more pages.
Can I get the reviewer's follower count or other profile details? This actor focuses on the review content itself: reviewer name, profile URL, rating, text, and date. It does not scrape the reviewer's full profile page.
What happens if Goodreads blocks my IP? Apify runs on a pool of datacenter IPs and can use residential proxies if you configure them. If you encounter blocks, adding proxies in the actor's advanced settings usually resolves it.

Related actors

Browse the full ParseForge collection for more scrapers.

๐Ÿ†˜ Need help? Email parseforge@protonmail.com with your run ID, your input, and what you expected.

โš ๏ธ Disclaimer. This Actor is unofficial and is not affiliated with, endorsed by, or sponsored by Goodreads, LLC. It collects only publicly available data. You are responsible for using the collected data in compliance with the source's terms of service and applicable data-protection laws, including GDPR, CCPA, and PIPL. Do not use it to collect personal data unlawfully.

Input

FieldTypeWhat it doesDefault
startUrl string Goodreads book reviews URL to start scraping from. Use this for direct URL access. Cannot be used together with bookId, sort, or rating. When using startUrl, all filters must be included in the URL itself. Example: https://www.goodreads.com/book/show/4671.The_Great_Gatsby/reviews not set
maxItems integer Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000 10
bookId string Goodreads book ID to scrape reviews from. Cannot be used together with startUrl. Example: 4671 4671
sort string (3 options) Sort reviews by: default (default order), rating (by rating), or date_added (by date). Only works with bookId, not with startUrl. Cannot be used together with startUrl. default
rating integer Filter reviews by rating (1-5 stars). Only works with bookId, not with startUrl. Cannot be used together with startUrl. not set

Pricing

from $8.00 per 1,000 results

Charged forWhat it isPrice each
Actor Start Charged when the Actor starts running. Number of events charged depends on Actor memory (one event per GB, minimum one event). $0.05 to $0.16
result Single result in the default dataset. $0.008 to $0.012

Tiered: the lower figure is the price on a higher Apify plan. Billing and the free credit live on Apify.

API

One POST returns the dataset directly. Same shape for every scraper in the library, so swapping the slug is the only change.

POST ยท run and get results
curl -X POST "https://api.apify.com/v2/acts/parseforge~goodreads-reviews-scraper/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "helloWorld": 123
  }'

Examples

Input that runs as-is.

input.json
{
  "helloWorld": 123
}

Reviews

Rated 5.0 out of 5 across 1 review. Read them on Apify.

Issues

We build and maintain this scraper, so a problem with it comes to us. Report it on the Apify listing and the thread stays attached to the scraper where the next person can find it: open an issue.

Broken and urgent, or you would rather not post in public? Write to parseforge@protonmail.com and it reaches the people who wrote it.

Related scrapers

Run Goodreads Reviews Scraper on Apify All scrapers