> For the complete documentation index, see [llms.txt](https://docs.thndr.io/integration/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.thndr.io/integration/customisation/launch-page.md).

# Launch Page

By default, the THNDR widget opens on the **game** tab. You can override this by passing a `launchPage` query parameter on the Game API URL, which instructs the widget to open directly on a specific tab.

This is useful when the context on the operator's side implies the player should land somewhere other than the game - for example, redirecting a player from a **pending matches list** straight into the **results** tab.

***

**Query Parameter**

| Parameter    | Type   | Required | Description                                                           |
| ------------ | ------ | -------- | --------------------------------------------------------------------- |
| `launchPage` | string | No       | The tab to open when the widget loads. Defaults to `game` if omitted. |

**Supported Values**

| Value          | Opens                  |
| -------------- | ---------------------- |
| `game`         | The game tab (default) |
| `results`      | The results tab        |
| `leaderboards` | The leaderboards tab   |
| `rules`        | The rules tab          |

**Example Request**

```
GET https://game-sandbox.thndr-cdn.com?operatorId={OPERATOR_123}&gameId=solitaire&language=en&sessionId={SESSION_ABC}&launchPage=results
```

**Notes**

If an unrecognised value is passed, the widget will fall back to the default `game` tab.
