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

# API Reference

> Complete reference for the Omi Developer API. Build integrations with memories, conversations, action items, and more.

## Base URL

```
https://api.omi.me
```

## Authentication

All API requests require a Developer API key in the `Authorization` header:

```http theme={null}
Authorization: Bearer omi_dev_your_api_key_here
```

Get your key from **Settings → Developer → Create Key** in the Omi app.

## Rate Limits

| Limit      | Value                    |
| ---------- | ------------------------ |
| Per minute | 100 requests per API key |
| Per day    | 10,000 requests per user |

Rate limit headers are included in every response:

```http theme={null}
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 95
X-RateLimit-Reset: 1642694400
```

## Resources

<CardGroup cols={2}>
  <Card title="Memories" icon="brain" href="/api-reference/endpoint/memories/list">
    Timeless facts about the user — preferences, relationships, insights.
  </Card>

  <Card title="Conversations" icon="message" href="/api-reference/endpoint/conversations/list">
    Conversation transcripts with AI-generated summaries and action items.
  </Card>

  <Card title="Action Items" icon="list-check" href="/api-reference/endpoint/action-items/list">
    Tasks and to-dos extracted from conversations or created manually.
  </Card>

  <Card title="API Keys" icon="key" href="/api-reference/endpoint/keys/list">
    Create, list, and revoke developer API keys.
  </Card>
</CardGroup>
