Games API
Games API Reference - Operator API
POST /api/v1/games/list
Headers:
X-Player-Token: {player-authentication-token}
Body: (empty)[
{
"name": "Classic Bingo",
"gameCode": "BINGAO_550e8400-e29b-41d4-a716-446655440000",
"urlThumb": "https://example.com/thumb.jpg",
"category": "Bingo",
"enabled": true,
"freebetSupport": false,
"phoenixJackpotSupport": false,
"releaseDate": "2025-10-08T00:00:00Z",
"volatility": 5,
"rtp": "94.5%",
"paylines": 0
}
]REQUIRED - JWT Authorization header using the Bearer scheme. All API endpoints require authentication, except for authentication endpoints (Connect/authentication). Example: "Authorization: Bearer {token}"
Player access token for session validation
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...Successfully retrieved the games list. Returns array of game objects (may be empty if no games available).
Invalid or missing X-Player-Token header authentication.
{
"playerId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"gameCode": "BINGAO_550e8400-e29b-41d4-a716-446655440000"
}{
"url": "https://game.example.com/launch?roomId=550e8400-e29b-41d4-a716-446655440000&otp=eyJhbGciOiJIUzI1NiJ9..."
}REQUIRED - JWT Authorization header using the Bearer scheme. All API endpoints require authentication, except for authentication endpoints (Connect/authentication). Example: "Authorization: Bearer {token}"
Unique transaction identifier for request tracking
aa532d7c-418e-4009-91b9-f7ae42c0a2efPlayer access token for session validation
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...Game URL generated successfully and ready for player launch.
Invalid request data, malformed game code, or non-existent game/room ID.
Invalid or missing X-Player-Token header authentication.
Last updated