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

# Overview

Alguna provides an JSON-based HTTP API to allow you to programatically ingest events, manage your accounts and more.
This documentation will provide you everything you need in order to get started, including code examples and
information on authentication and error handling.

## Host

The Alguna API is hosted at `https://api.alguna.io`. All requests must be made using HTTPS.

## Authentication

All requests to the API must be authenticated by providing an API key in the `Authorization` header.

```bash theme={null}
Authorization: Bearer <API-KEY>
```

You can create and manage your API keys [in your dashboard](https://dashboard.alguna.io/settings/credentials).

If your request could not be authenticated, the API will respond with a `401` status code.
