Create Game
This endpoint allows you to create a new game by sending basic game information like name, genre, and release date.
Game Model
name
stringName of the game to create.
genre
stringGenre of the game.
release_date
stringRelease date in ISO format.
developer
stringDeveloper or studio name.
POST
/v1/gamesThis endpoint allows you to create a new game by sending basic game information like name, genre, and release date.
curl -X POST https://api.vembric.chat/v1/games \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-d '{
"name": "Puzzle Hero",
"genre": "Puzzle",
"release_date": "2023-11-01",
"developer": "Logic Labs"
}'Sample Response
{
"id": "game_xyz123",
"name": "Puzzle Hero",
"genre": "Puzzle",
"release_date": "2023-11-01",
"developer": "Logic Labs",
"created_at": "2025-08-03T10:00:00Z"
}