Create Game

This endpoint allows you to create a new game by sending basic game information like name, genre, and release date.

Game Model

namestring

Name of the game to create.

genrestring

Genre of the game.

release_datestring

Release date in ISO format.

developerstring

Developer or studio name.

POST/v1/games

This 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"
}