✨ New Gift Cards API Live Now - Beta!
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
}
]
}
}Retrieve detailed information about a specific game including its services and item collections.
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
}
]
}
}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 single game with its details
Game object representing a video game available on the platform
Show child attributes
Was this page helpful?