# API Headscale provides a [HTTP REST API](#rest-api) which may be used to integrate a [web interface](integration/web-ui.md), [remote control Headscale](#remote-control) or provide a base for custom integration and tooling. The API requires a valid API key before use. To create an API key, log into your Headscale server and generate one with the default expiration of 90 days: ```shell headscale apikeys create ``` Copy the output of the command and save it for later. Please note that you can not retrieve an API key again. If the API key is lost, expire the old one, and create a new one. To list the API keys currently associated with the server: ```shell headscale apikeys list ``` and to expire an API key: ```shell headscale apikeys expire --prefix ``` ## REST API - API endpoint: `/api/v1`, e.g. `https://headscale.example.com/api/v1` - Documentation: `/api/v1/docs`, e.g. `https://headscale.example.com/api/v1/docs` - Headscale Version: `/version`, e.g. `https://headscale.example.com/version` - Authenticate using HTTP Bearer authentication by sending the [API key](#api) with the HTTP `Authorization: Bearer ` header. Start by [creating an API key](#api) and test it with the examples below. Read the API documentation provided by your Headscale server at `/api/v1/docs` for details. === "Get details for all users" ```console curl -H "Authorization: Bearer " \ https://headscale.example.com/api/v1/user ``` === "Get details for user 'bob'" ```console curl -H "Authorization: Bearer " \ https://headscale.example.com/api/v1/user?name=bob ``` === "Register a node" ```console curl -H "Authorization: Bearer " \ --json '{"user": "", "authId": ""}' \ https://headscale.example.com/api/v1/auth/register ``` ## Remote control The `headscale` binary can control a Headscale instance from a remote machine over the HTTP API. ### Prerequisite - A workstation to run `headscale` (any supported platform, e.g. Linux). - The Headscale server reachable over HTTP(S). - An [API key](#api) to authenticate with the Headscale server. ### Setup remote control 1. Download the [`headscale` binary from GitHub's release page](https://github.com/juanfont/headscale/releases). Make sure to use the same version as on the server. 1. Put the binary somewhere in your `PATH`, e.g. `/usr/local/bin/headscale` 1. Make `headscale` executable: `chmod +x /usr/local/bin/headscale` 1. [Create an API key](#api) on the Headscale server. 1. Provide the connection parameters for the remote Headscale server either via a minimal YAML configuration file or via environment variables: === "Minimal YAML configuration file" ```yaml title="config.yaml" cli: address: api_key: ``` === "Environment variables" ```shell export HEADSCALE_CLI_ADDRESS="" export HEADSCALE_CLI_API_KEY="" ``` This instructs the `headscale` binary to connect to a remote instance at `` (e.g. `https://headscale.example.com`), instead of connecting to the local instance. A bare host without a scheme is assumed to be `https`. 1. Test the connection by listing all nodes: ```shell headscale nodes list ``` You should now be able to see a list of your nodes from your workstation, and you can now control the Headscale server from your workstation. ### Behind a proxy The remote CLI uses the same HTTP API as everything else, so it works through the reverse proxy already in front of Headscale with no extra setup. ### Troubleshooting - Make sure you have the _same_ Headscale version on your server and workstation. - Verify that your TLS certificate is valid and trusted. - If you don't have access to a trusted certificate (e.g. from Let's Encrypt), either: - Add your self-signed certificate to the trust store of your OS _or_ - Disable certificate verification by either setting `cli.insecure: true` in the configuration file or by setting `HEADSCALE_CLI_INSECURE=1` via an environment variable. We do **not** recommend to disable certificate validation.