IGDB.com

IGDB.com

Games & Comics

Video Game Database

Visit API

πŸ“š Documentation & Examples

Everything you need to integrate with IGDB.com

πŸš€ Quick Start Examples

IGDB.com Javascript Examplejavascript
// IGDB.com API Example
const response = await fetch('https://api-docs.igdb.com', {
    method: 'GET',
    headers: {
        'Content-Type': 'application/json'
    }
});

const data = await response.json();
console.log(data);

The Video Game Database API provides an extensive and comprehensive collection of data related to video games, encompassing details such as game titles, genres, platforms, release dates, and game descriptions. This powerful API is an invaluable resource for developers and enthusiasts seeking to build engaging applications, interactive websites, or dynamic gaming databases. With access to a rich dataset, you can enhance user experiences by providing accurate and up-to-date information, facilitating game comparisons, and enabling personalized recommendations tailored to individual gaming preferences.

Using the Video Game Database API comes with numerous advantages, making it an essential tool for developers in the gaming industry. Benefits of using this API include:

  • Access to a vast database of video game information.
  • Up-to-date data reflecting the latest releases and trends in the gaming world.
  • Simplified data retrieval through a well-documented API.
  • The ability to integrate game details seamlessly into various applications and websites.
  • Support for multiple platforms, ensuring compatibility across different devices and environments.

Here’s a JavaScript code example for calling the Video Game Database API:

const fetch = require('node-fetch');

const url = 'https://api.igdb.com/v4/games';
const headers = {
    'Client-ID': 'YOUR_CLIENT_ID',
    'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
    'Content-Type': 'application/json'
};

const query = `
    fields name, release_dates, genres, platforms;
    limit 10;
`;

fetch(url, {
    method: 'POST',
    headers: headers,
    body: query
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
πŸ”’

Security Assessment

F
⚠️HTTPS
Not Supported
SSL Grade: T
πŸ›‘οΈHeaders
70/100
HSTSXFO
🚨Critical Issues
1
πŸ•’Last Assessed
1 months ago
ℹ️Click for detailed analysis

πŸ“Š 30-Day Uptime History

Daily uptime tracking showing online vs offline minutes

Jun 29Jul 1Jul 3Jul 5Jul 7Jul 9Jul 11Jul 13Jul 15Jul 17Jul 19Jul 21Jul 23Jul 25Jul 2804008001440Minutes
Online
Offline

Related APIs in Games & Comics