> ## Documentation Index
> Fetch the complete documentation index at: https://docs.launcherforge.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Launch tokens

> Understand the authenticated game launch flow.

# Launch tokens

```text theme={null}
Player selects Play
        ↓
Launcher requests a token
        ↓
Launcher starts the game
        ↓
Game validates the token
```

Initial validated data:

* User ID.
* Email.
* Valid authentication status.

```json theme={null}
{
  "id": "player-id",
  "email": "player@example.com",
  "valid": true
}
```

Treat launch tokens as temporary credentials. Never expose them in player-facing errors or production logs.

<Frame caption="Launcher token request, game startup, and validation">
  <img src="https://mintcdn.com/launcher-forge/bI18S_IAtXIDvEcC/images/screenshots/launch-tokens.png?fit=max&auto=format&n=bI18S_IAtXIDvEcC&q=85&s=25b1f4bd4ad9ffb16f85605059f30d65" alt="Authenticated launch token flow" width="1600" height="900" data-path="images/screenshots/launch-tokens.png" />
</Frame>
