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

RAWG Scraper

Extract game database entries, ratings, screenshots, and platform info from the RAWG video game database. Built on spider-browser .

Get started Docs
target
rawg.io
success rate
99.9%
latency
~4ms
Quick start

Extract data in minutes.

rawg-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://rawg.io/games/grand-theft-auto-v");
await page.content();

const data = await page.extractFields({
  title: "h1",
  rating: "[class*='rating'] [class*='number'], [aria-label*='rating']",
  releaseDate: "[class*='info'] [class*='value'], dt + dd",
  platforms: "[class*='info'] [class*='value'], dt + dd",
  genres: "[class*='info'] [class*='value'], dt + dd",
  developer: "[class*='info'] [class*='value'], dt + dd",
});

console.log(data);
await spider.close();
ready to run · spider-browser · TypeScript
Fetch API

One endpoint for rawg.io.

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

POST /fetch/rawg.io/
Game titleRatingRelease datePlatformsGenresDevelopers
cURL
curl -X POST https://api.spider.cloud/fetch/rawg.io/ \
  -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/rawg.io/",
    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/rawg.io/", {
  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.

Game titleRatingRelease datePlatformsGenresDevelopersScreenshotsMetacritic score
Data

Game metadata

Extract prices, reviews, system requirements, and ratings from rawg.io.

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 rawg.io.

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