Skip to main content
GET
/
v2
/
games
/
{game}
Get a game
curl --request GET \
  --url https://api.gameboost.com/v2/games/{game} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "name": "<string>",
    "slug": "<string>",
    "acronym": "<string>",
    "services": [
      "<string>"
    ],
    "game_item_collections": [
      {
        "name": "<string>",
        "slug": "<string>",
        "items_count": 123
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

game
string
required

The slug of the game. Can be retrieved from the list of games.

Response

A single game with its details

data
object

Game object representing a video game available on the platform

I