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

# Control Panel API

> Programmatically manage your FlashRDP servers, SSH keys, resource packs, and more.

The Control Panel API gives you full programmatic access to your FlashRDP infrastructure. All endpoints require a Bearer token from your account settings.

## Base URL

```
https://servers.flashrdp.com/api
```

## Authentication

Include your API token in every request:

```bash theme={null}
Authorization: Bearer YOUR_API_TOKEN
```

## Available Endpoints

<CardGroup cols={2}>
  <Card title="Account" icon="user">
    Retrieve account details and profile information.
  </Card>

  <Card title="SSH Keys" icon="key">
    Manage SSH keys for secure server access.
  </Card>

  <Card title="Resource Packs" icon="box">
    View and manage resource pack allocations.
  </Card>

  <Card title="Servers" icon="server">
    Create, configure, and control your servers.
  </Card>
</CardGroup>
