GET
/
games
/
title
/
{game_title}
fetch(`https://api.games.alexgalhardo.com/games/title/godofwar`, {
		method: "GET",
		headers: { 
			"Content-Type": "application/json",
			"Authorization": "Bearer <YOUR_API_KEY>"
		}
 	})
 	.then(res => res.json())
 	.then(json => console.log(json));
{
	"success": true,
	"data": {
        "id": "21a0471b-c19b-41e2-a2ea-a286528156f4",
        "title": "Super Mario World",
        "slug": "super-mario-world",
        "cover_image": "https://images.igdb.com/igdb/image/upload/t_cover_big/co65za.jpg",
        "summary": "A 2D platformer and first entry on the SNES in the Super Mario franchise, Super Mario World follows Mario as he attempts to defeat Bowser's underlings and rescue Princess Peach from his clutches. The game features a save system, a less linear world map, an expanded movement arsenal and numerous new items for Mario, alongside new approaches to level design and art direction.",
        "release_year": 1990,
        "igdb": {
            "id": 1070,
            "url": "https://www.igdb.com/games/super-mario-world",
            "rating": 96
        },
        "developer": {
            "id": 265989,
            "name": "Nintendo EAD",
            "slug": "nintendo-ead"
        },
        "publisher": {
            "id": 265990,
            "name": "Nintendo",
            "slug": "nintendo"
        },
        "platforms_available": [
            {
                "id": 41,
                "name": "Wii U",
                "slug": "wii-u"
            },
            {
                "id": 137,
                "name": "New Nintendo 3DS",
                "slug": "new-nintendo-3ds"
            },
            {
                "id": 52,
                "name": "Arcade",
                "slug": "arcade"
            },
            {
                "id": 5,
                "name": "Wii",
                "slug": "wii"
            },
            {
                "id": 58,
                "name": "Super Famicom",
                "slug": "super-famicom"
            },
            {
                "id": 19,
                "name": "Super Nintendo Entertainment System",
                "slug": "super-nintendo-entertainment-system"
            }
        ],
        "genres": [
            {
                "id": 31,
                "name": "Adventure",
                "slug": "adventure"
            },
            {
                "id": 8,
                "name": "Platform",
                "slug": "platform"
            }
        ]
  },
}

Headers

Authorization
string
required

Send in each request your API KEY in request header authorization bearer token

Param

game_title
string
required

Search game title

Response

success
boolean

Return true if response was successfully, or false otherwise.

error
string

Return error description.

data
object

Return data with the game object

fetch(`https://api.games.alexgalhardo.com/games/title/godofwar`, {
		method: "GET",
		headers: { 
			"Content-Type": "application/json",
			"Authorization": "Bearer <YOUR_API_KEY>"
		}
 	})
 	.then(res => res.json())
 	.then(json => console.log(json));
{
	"success": true,
	"data": {
        "id": "21a0471b-c19b-41e2-a2ea-a286528156f4",
        "title": "Super Mario World",
        "slug": "super-mario-world",
        "cover_image": "https://images.igdb.com/igdb/image/upload/t_cover_big/co65za.jpg",
        "summary": "A 2D platformer and first entry on the SNES in the Super Mario franchise, Super Mario World follows Mario as he attempts to defeat Bowser's underlings and rescue Princess Peach from his clutches. The game features a save system, a less linear world map, an expanded movement arsenal and numerous new items for Mario, alongside new approaches to level design and art direction.",
        "release_year": 1990,
        "igdb": {
            "id": 1070,
            "url": "https://www.igdb.com/games/super-mario-world",
            "rating": 96
        },
        "developer": {
            "id": 265989,
            "name": "Nintendo EAD",
            "slug": "nintendo-ead"
        },
        "publisher": {
            "id": 265990,
            "name": "Nintendo",
            "slug": "nintendo"
        },
        "platforms_available": [
            {
                "id": 41,
                "name": "Wii U",
                "slug": "wii-u"
            },
            {
                "id": 137,
                "name": "New Nintendo 3DS",
                "slug": "new-nintendo-3ds"
            },
            {
                "id": 52,
                "name": "Arcade",
                "slug": "arcade"
            },
            {
                "id": 5,
                "name": "Wii",
                "slug": "wii"
            },
            {
                "id": 58,
                "name": "Super Famicom",
                "slug": "super-famicom"
            },
            {
                "id": 19,
                "name": "Super Nintendo Entertainment System",
                "slug": "super-nintendo-entertainment-system"
            }
        ],
        "genres": [
            {
                "id": 31,
                "name": "Adventure",
                "slug": "adventure"
            },
            {
                "id": 8,
                "name": "Platform",
                "slug": "platform"
            }
        ]
  },
}