Skip to main content
GET
/
v2
/
games
/
{game}
/
item-types
List item collections for a game
curl --request GET \
  --url https://api.gameboost.com/v2/games/{game}/item-types \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "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 list of item collections (types) for a specific game

data
object[]
I