Skip to main content gottem  — one API for every scraper.
Media
Verified

Goodreads Scraper

Extract book ratings, reviews, author info, and reading list data from Goodreads. Built on spider-browser .

Get started Docs
target
goodreads.com
success rate
99.9%
latency
~4ms
Quick start

Extract data in minutes.

goodreads-scraper.ts
import { SpiderBrowser } from "spider-browser";

const spider = new SpiderBrowser({
  apiKey: process.env.SPIDER_API_KEY!,
});

await spider.connect();
const page = spider.page!;
await page.goto("https://www.goodreads.com/list/show/1.Best_Books_Ever");
await page.content();

const data = await page.evaluate(`(() => {
  const books = [];
  document.querySelectorAll("tr[itemtype='http://schema.org/Book']").forEach(el => {
    const title = el.querySelector(".bookTitle span")?.textContent?.trim();
    const author = el.querySelector(".authorName span")?.textContent?.trim();
    const rating = el.querySelector(".minirating")?.textContent?.trim();
    if (title) books.push({ title, author, rating });
  });
  return JSON.stringify({ total: books.length, books: books.slice(0, 20) });
})()`);

console.log(JSON.parse(data));
await spider.close();
ready to run · spider-browser · TypeScript
Extraction

Fields you can pull.

Book titleAuthorRatingReview countGenrePagesPublishedDescription
Metadata

Rich data extraction

Extract titles, view counts, and engagement metrics from goodreads.com.

Rendering

Dynamic content

Handle lazy-loaded comments, recommendations, and infinite scroll.

Scale

Channel-level scraping

Process entire channels and playlists with automatic pagination.

Related

More Media scrapers.

Start

Start scraping goodreads.com.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.