---
title: "Export memories"
method: GET
path: "/memories/export"
tags: ["memories"]
---

# Export memories

`GET /memories/export`

Export memories to a portable JSON payload for backup/transfer.

## Query parameters

- `space_id` string, nullable — Space ID to export from

## Response `200`

Portable memory export payload

- MemoryExportResponse — Export payload for memory backup/download workflows.
  - `version` string, required — Export payload schema version
  - `exported_at` string, date-time, required — Export timestamp
  - `checksum` string, required — SHA-256 checksum of exported memories
  - `checksum_algorithm` string — Checksum algorithm for integrity verification
  - `total` integer, required — Number of exported memories
  - `space_id` string, nullable — Requested export space
  - `memories` MemoryImportItem[], required — Memory items that can be re-imported
    - `content` string, required — Memory content text
    - `tags` string[], nullable — Tags for categorizing the memory
    - `source` string, nullable — Source of the memory
    - `importance` integer, nullable — Importance score (1-10)
    - `category` string, nullable — Memory category
    - `metadata` object, nullable — Additional metadata

## Other responses

- `401` — Unauthorized
- `413` — Request Entity Too Large
- `422` — Validation Error

---

[API](https://skmtc.net/memara/apis/memara-api.md) · [All operations](https://skmtc.net/memara/apis/memara-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/memara/memara-api/revisions/4dc7c4418845/schema)
