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

# Introduction

> Get your API key and start using Phonely's frontend API.

These API docs cover the frontend endpoints that are authenticated with your Phonely API key.

## Get Your API Key

1. Sign in to the Phonely app.
2. Open `/settings?tab=profile`.
3. Find the `API Key` field.
4. Reveal and copy the key.

## Authenticate Requests

Send the API key in the `X-Authorization` header.

```bash theme={null}
curl https://api.phonely.ai/agents \
  -H "X-Authorization: YOUR_API_KEY"
```

## Keep The Scope In Mind

* These docs cover the API-key-authenticated frontend API surface.
* Internal-only routes and services that use a different authentication model are out of scope here.

<Warning>
  Keep your API key confidential. Do not share it publicly or commit it to source control.
</Warning>
