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

# Introduction

> Welcome to the OtterlyAI Public API

The OtterlyAI Public API lets you programmatically access brand reports, prompts,
citations, agent analytics (AI crawler traffic on your own domains), and
workspace data from the OtterlyAI platform.

## Base URL

```
https://data.otterly.ai
```

All endpoints are prefixed with `/v1`.

## OpenAPI Spec

The full machine-readable spec is published at:

```
https://data.otterly.ai/v1/openapi.json
```

This documentation is generated directly from that spec, so it is always in
sync with the deployed API.

## Quick Start

1. Generate an API key from your [OtterlyAI dashboard](https://app.otterly.ai/api-keys).
2. Send it as a Bearer token in the `Authorization` header.
3. Call any endpoint listed in the API Reference.

```bash theme={null}
curl https://data.otterly.ai/v1/health \
  -H "Authorization: Bearer YOUR_API_KEY"
```
