Skip to main content gottem  — one API for every scraper.
Gaming & Esports
Verified

Liquipedia Scraper

Extract esports tournament brackets, team rosters, match results, and player bios from Liquipedia wiki. Built on spider-browser .

Get started Docs
target
liquipedia.net
success rate
99.9%
latency
~4ms
Quick start

Extract data in minutes.

liquipedia-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://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();
ready to run · spider-browser · TypeScript
Fetch API

One endpoint for liquipedia.net.

Structured JSON from liquipedia.net with a single POST. AI-resolved selectors, cached on the first call.

POST /fetch/liquipedia.net/
Tournament nameTeamsBracket resultsPrize poolPlayer nameRoster
cURL
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"}'
Python
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())
Node.js
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);
Extraction

Fields you can pull.

Tournament nameTeamsBracket resultsPrize poolPlayer nameRosterMatch score
Data

Game metadata

Extract prices, reviews, system requirements, and ratings from liquipedia.net.

Rendering

Store page handling

Handle dynamic storefronts, interactive catalogs, and lazy-loaded content.

Scale

Catalog coverage

Process entire game libraries and mod repositories at scale.

Related

More Gaming & Esports scrapers.

Start

Start scraping liquipedia.net.

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