Overview
RAWG.io is a massive video game database API with over 500,000 games across 50 platforms, including PC, consoles, and mobile. It lets you search games by genre, platform, or rating and retrieve detailed metadata like release dates and screenshots. An API key is required but free for up to 20,000 monthly requests.
Beginner Tip
Register at rawg.io to get a free API key, then append ?key=YOUR_API_KEY to every request. Start with the /games endpoint to search by name or filter by platform.
Available Data
Example Response
{
"id": 1,
"name": "RAWG.io",
"data": "500,000+ games for 50 platforms including mobiles",
"source": "RAWG.io"
} Field Reference
id Unique RAWG identifier for the game name Full title of the game released Release date in YYYY-MM-DD format rating Average user rating on a 0-5 scale platforms List of platforms the game is available on, each with name and slug background_image URL to the game cover or key art image Implementation Example
const url = "https://rawg.io/apidocs";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Brawl Stars
The Brawl Stars API provides official game data including player profiles, club info, battle logs, and brawler statistics.
Clash of Clans
The Clash of Clans API provides official data on players, clans, clan wars, leagues, and rankings from Supercell's hit mobile strategy game.
Clash Royale
The Clash Royale API offers official data on players, clans, cards, battles, and tournaments from Supercell's card-battle mobile game.
Destiny The Game
The Destiny The Game API (Bungie Platform API) gives developers access to data from the popular Destiny franchise, including player stats, character info, and game content.
Dota 2
The Dota 2 API (OpenDota) provides detailed match history, hero statistics, player rankings, and game data for the popular MOBA game Dota 2.