View Game Details

Retrieve detailed information about a specific game using its ID.

Game Model

idstring (path param)

The unique ID of the game to retrieve.

GET/v1/games/:id

Get details of a game

curl -X GET https://api.vembric.chat/v1/games/game_xyz123 \
  -H "Authorization: Bearer {token}"

Sample Response

{
  "id": "game_xyz123",
  "name": "Puzzle Hero",
  "genre": "Puzzle",
  "release_date": "2023-11-01",
  "developer": "Logic Labs",
  "created_at": "2023-10-10T09:00:00Z"
}