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

# API Reference

> Access your Dabe data programmatically

The Dabe API allows you to access your competitor monitoring and Reddit visibility data programmatically.

## Base URL

```
https://dabe.io/api/v1
```

## Authentication

All API requests require authentication using an API key. Get your API key from **Settings > API** in your dashboard.

Include the API key in the `Authorization` header:

```bash theme={null}
Authorization: Bearer rm_live_xxxxxxxxxxxxx
```

## Rate Limits

API requests are rate limited to 100 requests per minute per API key.

## Errors

The API uses standard HTTP status codes:

| Status | Description                               |
| ------ | ----------------------------------------- |
| 200    | Success                                   |
| 400    | Bad request - check your parameters       |
| 401    | Unauthorized - invalid or missing API key |
| 429    | Rate limit exceeded                       |
| 500    | Server error                              |

## Example Request

```bash theme={null}
curl -X GET "https://dabe.io/api/v1/keywords" \
  -H "Authorization: Bearer rm_live_xxxxxxxxxxxxx"
```
