Skip to content

Start 🚀🔗

Start the game as a host.

Request model🔗

{ "op": "Start", "d": {} }

Success response🔗

Below is an example of the response when starting a game, the opcode is GameEvent, the GameEvent has it's own inner opcode which in this case is defined as Start, a list of game-events and their definition can be found here.

{
    "response": {
        "d": {
            "event": {
                "game_id": "886b3c9d-2b31-43b0-9cd4-e671687313ef",
                "settings": {}
            },
            "op": "Start"
        },
        "op": "GameEvent"
    },
    "status": true
}

Errors🔗

Errors that may occur while fetching stats.

  1. NotIdentified
  2. NotInGame
  3. NotHost
  4. AlreadyStarted
Back to top