✨ New Gift Cards API Live Now - Beta!
curl --request GET \
--url https://api.gameboost.com/v2/games \
--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
}
]
}
],
"message": "Only active games are returned"
}Retrieve a list of all active games available on the platform with optional filtering and sorting.
curl --request GET \
--url https://api.gameboost.com/v2/games \
--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
}
]
}
],
"message": "Only active games are returned"
}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.
Search games by id, name, slug, or acronym
Filter by exact id. Supports comma-separated values for multiple matches.
"3,6,9"
Filter by exact slug. Supports comma-separated values for multiple matches.
"example"
Filter by exact acronym. Supports comma-separated values for multiple matches.
"example"
Sort by field. Prefix with - for descending order.
id, -id, name, -name, slug, -slug, acronym, -acronym, created_at, -created_at, updated_at, -updated_at "name"
Was this page helpful?