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

# Cloud v1 (legacy)

> The previous-generation EverOS Cloud API. Still available, but superseded by the unified Memory API (v2).

<Warning>
  This is the **legacy v1 Cloud API**. It still works today, but is being superseded by the unified [Memory API (v2)](/api-reference/introduction). New integrations should use v2. This API will be retired in a future release.
</Warning>

## What moved to v2

The memory operations have new v2 equivalents shared across Cloud and OSS:

| v1 (Cloud)                                       | v2                           |
| ------------------------------------------------ | ---------------------------- |
| `POST /api/v1/memories` (and `/group`, `/agent`) | `POST /api/v2/memory/add`    |
| `POST /api/v1/memories/flush` (and variants)     | `POST /api/v2/memory/flush`  |
| `POST /api/v1/memories/get`                      | `POST /api/v2/memory/get`    |
| `POST /api/v1/memories/search`                   | `POST /api/v2/memory/search` |
| `POST /api/v1/memories/delete`                   | `POST /api/v2/memory/delete` |

## Not part of v2

v2 is a ground-up redesign, not a 1:1 port of v1. **Groups**, **Senders**, **Tasks**, and **Settings** are not part of the v2 API, and there is no commitment to bring them back. If your integration depends on them, stay on v1 for now and plan to move off these capabilities.

## Base URL

`https://api.evermind.ai`

Authentication is unchanged — send your API key as `Authorization: Bearer <api-key>`.
