Liquipedia Scraper
Extract esports tournament brackets, team rosters, match results, and player bios from Liquipedia wiki. Powered by spider-browser .
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://liquipedia.net/counterstrike/Intel_Extreme_Masters/Katowice/2024");
const data = await page.extractFields({
title: ".infobox-header",
prizePool: ".infobox-cell-2 .prizepoolusd",
location: ".infobox-cell-2:has(.icon-location) + .infobox-cell-2",
dates: ".infobox-cell-2:has(.icon-date) + .infobox-cell-2",
winner: ".infobox-cell-2:has(.icon-firstplace) + .infobox-cell-2",
teams: ".teamcard .team-template-text a",
});
console.log(data);
await spider.close(); Structured data endpoint
Extract structured JSON from liquipedia.net with a single POST request. AI-configured selectors, cached for fast repeat calls.
/fetch/liquipedia.net/ curl -X POST https://api.spider.cloud/fetch/liquipedia.net/ \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"return_format": "json"}' import requests
resp = requests.post(
"https://api.spider.cloud/fetch/liquipedia.net/",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
json={"return_format": "json"},
)
print(resp.json()) const resp = await fetch("https://api.spider.cloud/fetch/liquipedia.net/", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({ return_format: "json" }),
});
const data = await resp.json();
console.log(data); Data you can extract
Game metadata
Extract prices, reviews, system requirements, and ratings from liquipedia.net.
Store page handling
Handle dynamic storefronts, interactive catalogs, and lazy-loaded content.
Catalog coverage
Process entire game libraries and mod repositories at scale.
More Gaming & Esports scrapers
Extract game listings, pricing, reviews, tags, and player counts from the Steam store and community pages.
Extract game listings, pricing, free game promotions, and metadata from the Epic Games Store.
Extract DRM-free game listings, pricing, compatibility info, and user ratings from the GOG store.
Start scraping liquipedia.net
Get your API key and start extracting data in minutes.