Overview
IGDB.com API is a comprehensive video game database with over 200,000 games, covering metadata like genres, release dates, ratings, screenshots, and more. You authenticate using a Twitch OAuth token alongside your client credentials. It is the go-to API for building game libraries, discovery apps, or review aggregators.
Beginner Tip
You must first get a Twitch Developer client ID and secret, then exchange them for a Bearer token at id.twitch.tv/oauth2/token before making any IGDB requests.
Available Data
Example Response
{
"id": 1,
"name": "IGDB.com",
"data": "Video Game Database",
"source": "IGDB.com"
} Field Reference
id Unique IGDB identifier for the game. name Official title of the game. rating Aggregated user rating on a scale of 0 to 100. genres List of genre IDs associated with the game; expand with a separate genres endpoint. first_release_date Unix timestamp of the game first release date. cover ID referencing the cover image; use the covers endpoint to get the image URL. Implementation Example
const url = "https://api-docs.igdb.com/";
// 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.