List All Games
This endpoint allows you to retrieve a paginated list of all available games. By default, a maximum of ten games are shown per page.
The Game Model
The game model defines each game’s core attributes: ID, name, genre, release date, and the developer behind it.
id
stringUnique identifier for the game.
name
stringName of the game.
genre
stringGenre of the game.
release_date
stringRelease date in ISO format.
developer
stringName of the developer or studio.
GET
/v1/gamesList all games
This endpoint allows you to retrieve a paginated list of all available games. By default, a maximum of ten games are shown per page.
Optional Attributes
- limit
(integer): Limit the number of games returned.
curl -G https://api.vembric.chat/v1/games \
-H "Authorization: Bearer {token}" \
-d limit=10Response
{
"has_more": false,
"data": [
{
"id": "game1",
"name": "Cyber Blaster",
"genre": "Shooter",
"release_date": "2024-04-15",
"developer": "Vembric Games"
},
{
"id": "game2",
"name": "Puzzle Hero",
"genre": "Puzzle",
"release_date": "2023-11-01",
"developer": "Logic Labs"
}
]
}