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

# Evidence and Citations

> Load source chunks behind extracted memories.

Each extracted Context Vault memory can have one or more evidence rows. Evidence
links the memory to the document source and chunk it came from.

Use `GET /api/context-vault/memories/{memoryId}/evidence` to load citations.

```bash theme={null}
curl "https://api.memcontext.in/api/context-vault/memories/MEMORY_ID/evidence?workspaceId=WORKSPACE_ID" \
  -H "X-API-Key: $MEMCONTEXT_API_KEY"
```

Evidence includes:

* `sourceId`
* `chunkId`
* `chunkIndex`
* `sectionPath`
* `pageNumber`
* source chunk `content`
* extraction `quote`
* `confidence`

Use evidence to show citations in your UI, inspect the original passage, and
decide whether a correction should update only the extracted memory or also the
source chunk.
