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

# Authentication

The Miru Platform API uses API keys to authenticate requests. You can view and manage your API keys in the [Miru Dashboard](https://app.mirurobotics.com/settings/secrets).

For more information on creating and managing API keys, see the [API keys](/admin/apikeys) section of the documentation.

To authenticate requests to the Miru Platform API, include your API key in the `X-API-Key` header of your request:

```bash theme={null}
curl --request GET \
  --url 'https://api.mirurobotics.com/beta/devices' \
  --header 'X-API-Key: <api-key>' \
  --header 'Miru-Version: 2026-05-06.rainier'
```

All requests must be made over HTTPS. Any requests over plain HTTP or without authentication will fail.

For details on which scopes to assign your API keys, see [Authorization](/developers/platform-api/authz).
