---
title: "Create memory"
method: POST
path: "/v1/dev/user/memories"
tags: ["Memories"]
---

# Create memory

`POST /v1/dev/user/memories`

Create a new memory. Memories are timeless facts about the user — preferences, relationships, personal details, and notable insights.

## Request body

- CreateMemory
  - `content` string, required — The memory content.
  - `category` 'interesting' | 'system' | 'manual' — Memory category. Auto-categorized if not provided.
  - `visibility` 'public' | 'private' — Visibility level.
  - `tags` string[] — List of tags.

## Response `200`

The created memory.

- Memory
  - `id` string — Unique identifier.
  - `content` string — The memory content.
  - `category` 'interesting' | 'system' | 'manual' — Memory category.
  - `visibility` 'public' | 'private' — Visibility level.
  - `tags` string[] — List of tags.
  - `created_at` string, date-time — When the memory was created.
  - `updated_at` string, date-time — When the memory was last updated.
  - `manually_added` boolean — Whether the memory was added manually (via API or app).
  - `reviewed` boolean — Whether the memory has been reviewed.
  - `user_review` boolean, nullable — User's review decision.
  - `edited` boolean — Whether the memory has been edited.

## Other responses

- `401` — Invalid or missing API key.
- `422` — Validation error.

## Changes

- **2026-03-24** `b791dc93aa91` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/basedhardware/apis/omi-developer-api/changes/v1/dev/user/memories/post.md)

---

[API](https://skmtc.dev/basedhardware/apis/omi-developer-api.md) · [All operations](https://skmtc.dev/basedhardware/apis/omi-developer-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/basedhardware/omi-developer-api/revisions/b791dc93aa91/schema)
