Skip to main content
The lobby provides REST endpoints for discovering available games, browsing tables, and managing rooms. All endpoints require Authorization: Bearer {token} header (except identity endpoints).

Discovery

List Games

The specVersion indicates the semantic version of the game specification. The schemaFormat indicates the schema format used in the spec (A2G requires json-schema).

Get Game Specification

Servers MUST serve a game specification for every game listed in supportedGames. This is the mechanism that enables clients to learn new games at runtime.

List Active Tables

Room Management

When joining a table, the server validates:
  1. The client is authenticated with an active session
  2. The table exists and has an open seat
  3. The client’s allowedGames permission includes this game type
  4. The client has sufficient balance for the minimum buy-in
  5. The buy-in amount does not exceed maxStakePerRound (if set)
On successful join, the server sends game_state_update with the current table state.