Query vaults
Read vault contents using the vault ID. All read operations work on active, sealed, and persisted vaults. Expired vaults return 404.Get vault metadata
- SDK
- cURL
Get the full manifest
The manifest includes all documents with their data and all files with their CDN URLs:vaultMiddleware, req.vault.getManifest() returns the same data:
Response fields
| Field | Type | Description |
|---|---|---|
id | string | Vault ID (vlt_...) |
status | string | active, sealed, persisted, or expired |
label | string | Human-readable label from creation |
summary | string | Summary provided when sealing |
sealedAt | string | ISO timestamp of sealing, null if still active |
expiresAt | string | ISO timestamp of expiry, null if persisted |
createdAt | string | ISO timestamp of creation |
documents | array | List of document stubs (full data in manifest) |
files | array | List of file stubs with CDN URLs |
Related
- Create a vault — vault creation
- Access control — share read access with clients
- Files — file download details

