Rotten Tomatoes Scraper
Extract movie/TV ratings, critic scores, audience scores, and reviews from Rotten Tomatoes. Built on spider-browser .
- target
- rottentomatoes.com
- success rate
- 99.9%
- latency
- ~4ms
Extract data in minutes.
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.rottentomatoes.com/browse/movies_at_home/sort:popular");
await page.content();
const data = await page.evaluate(`(() => {
const movies = [];
document.querySelectorAll("[data-qa='discovery-media-list-item']").forEach(el => {
const title = el.querySelector("[data-qa='discovery-media-list-item-title']")?.textContent?.trim();
const score = el.querySelector("score-pairs-deprecated")?.getAttribute("criticsscore");
const audience = el.querySelector("score-pairs-deprecated")?.getAttribute("audiencescore");
if (title) movies.push({ title, tomatometer: score, audience });
});
return JSON.stringify({ total: movies.length, movies: movies.slice(0, 20) });
})()`);
console.log(JSON.parse(data));
await spider.close(); Fields you can pull.
Rich data extraction
Extract titles, view counts, and engagement metrics from rottentomatoes.com.
Dynamic content
Handle lazy-loaded comments, recommendations, and infinite scroll.
Channel-level scraping
Process entire channels and playlists with automatic pagination.
More Media scrapers.
YouTube Scraper
Extract video metadata, channel statistics, view counts, comments, playlist data, and trending content from YouTube. Full rendering for dynamic content and infinite scroll.
Twitch Scraper
Extract live stream data, channel info, viewer counts, and game categories from Twitch.
Spotify Scraper
Extract playlist data, track listings, artist info, and album metadata from Spotify.
Start scraping rottentomatoes.com.
Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.