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

# Export Your Memory

> Download everything a memory space holds (Markdown, JSONL, and an entity graph) from your dashboard.

Your memories are yours. Any space can be exported in full, as a zip you download
from the dashboard, so moving to another platform is never blocked by us.

Exports are **free** and unmetered: they don't consume credits.

## Requesting an export

<Steps>
  <Step title="Open the space">
    Dashboard → **Spaces** → the space you want → **Exports** tab.
  </Step>

  <Step title="Request the export">
    Click **Request export**. The bundle is built in the background, so you don't
    need to keep the page open.
  </Step>

  <Step title="Download it">
    We email you when it's ready, with a link back to this tab. Click
    **Download**.
  </Step>
</Steps>

## What's in the bundle

The file is named `export-{space}-{date}.zip` and contains four files:

| File             | Purpose                                                                                                                  |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------ |
| `memories.md`    | Human-readable. Grouped by month, newest first, with context and tags.                                                   |
| `memories.jsonl` | One JSON object per memory, with stable ids, timestamps, tags, and metadata. **Use this to import into another system.** |
| `graph.json`     | Extracted entities and the connections between them.                                                                     |
| `manifest.json`  | Export date, counts, and format version.                                                                                 |

A `memories.jsonl` record looks like this:

```json theme={null}
{
  "id": "01J8Z...",
  "content": "Alice prefers dark mode",
  "context": "onboarding call",
  "timestamp": "2026-07-15T10:00:00Z",
  "created_at": "2026-07-15T10:00:01Z",
  "tags": ["preferences"],
  "metadata": {"source": "call"},
  "type": "world"
}
```

<Note>
  Graph edges are **co-occurrence**: two entities appearing in the same memory,
  weighted by how often. They are not labeled or typed relationships, so don't
  read `source → target` as a predicate.
</Note>

## Availability window

An export stays downloadable for **7 days**, then it is deleted automatically.
Request a fresh one any time. There's no limit beyond one export per space per
24 hours.

Bundles are stored encrypted and are never publicly reachable. The download link
is generated when you click **Download**, is valid for five minutes, and requires
you to be signed in, which is why the "ready" email links to your dashboard
rather than to the file itself.

## Frequently asked

<AccordionGroup>
  <Accordion title="Can I trigger an export with my API key?">
    No. Exports are dashboard-only and require a signed-in session. An export
    bundle is a complete copy of a space, so we deliberately don't let a
    long-lived API key produce or fetch one.
  </Accordion>

  <Accordion title="Does exporting delete anything?">
    No. It's a read-only copy. Your memories are untouched.
  </Accordion>

  <Accordion title="Are uploaded documents included?">
    No. The bundle contains memories and the entity graph. The original files
    you uploaded aren't re-packaged, since you already hold those.
  </Accordion>

  <Accordion title="Can I export every space at once?">
    Not yet. Export one space at a time.
  </Accordion>
</AccordionGroup>
