✨ New Gift Cards API Live Now - Beta!
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
}
]
}Retrieve all item collections (types) available for a specific game, such as champions, skins, or roles.
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
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.gameboost.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The slug of the game. Can be retrieved from the list of games.
A list of item collections (types) for a specific game
Show child attributes
Was this page helpful?