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

# Introduction

> How to access and use the RevRing API

<Tip>You can use the RevRing API in automation tools such as N8N, Make, GoHighLevel, and more to automate any kind of call sequence or logic!</Tip>

## Creating an API Key

To begin using the RevRing API, you must first create an API Key from the dashboard.
API Keys are sensitive credentials, so ensure to store them securely and limit access.

<Card title="Create an API Key" icon="key" href="https://dashboard.revring.ai/app/api-keys">
  Create a new API Key from the RevRing Dashboard
</Card>

## Authentication

All API endpoints are authenticated using the `x-api-key` header:

```bash theme={null}
curl --request GET \
  --url https://api.revring.ai/v1/agents \
  --header 'x-api-key: <api-key>'
```
