Epic Games Store Scraper
Spider read store.epicgames.com in 113 ms without a browser and returned 82 lines of clean markdown, including the section "Discover".
# Discover##### New Featured Carousel###### Epic SavingsSave big on must-play games and discover new adventures.See what’s new in Fortnite all in one place.##### Epic Savings SpotlightInscryption](https://store.epicgames.com/p/inscryption-6b29ab)Corsair Cove](https://store.epicgames.com/p/corsair-cove-35fa64)Check out all the deals for this week.](https://store.epicgames.com/sales-and-specials)* The lowest price offered on The Epic Games Store in the last 30 days before discount The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on store.epicgames.com.
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://store.epicgames.com/en-US/browse?sortBy=releaseDate&sortDir=DESC");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
stealth: 2,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://store.epicgames.com/en-US/browse?sortBy=releaseDate&sortDir=DESC");
await page.content(10000);
const data = await page.evaluate(`(() => {
const games = [];
document.querySelectorAll("[data-component='DiscoverOfferCard']").forEach(el => {
const title = el.querySelector("span[data-component='OfferTitleInfo']")?.textContent?.trim();
const price = el.querySelector("[data-component='PriceLayout']")?.textContent?.trim();
if (title) games.push({ title, price });
});
return JSON.stringify({ total: games.length, games: games.slice(0, 10) });
})()`);
console.log(JSON.parse(data));
await spider.close(); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What store.epicgames.com costs to scrape.
The capture above cost $0.001201 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More Gaming & Esports scrapers.
Steam Scraper
Extract game listings, pricing, reviews, tags, and player counts from the Steam store and community pages.
GOG Scraper
Extract DRM-free game listings, pricing, compatibility info, and user ratings from the GOG store.
IGN Scraper
Extract game reviews, scores, news articles, and video content metadata from IGN entertainment coverage.
Start scraping store.epicgames.com.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.