Pre-release — contact your Fortary account team for access.
Illustrative reference. These examples show the shape of the API and are provided for early evaluation while it is still being finalized. Field names and response details may change before the API is released. A complete reference, generated directly from the live API, will replace these examples once it is available.
GET /v1/vaults/{vaultId}
Retrieves a single vault by its identifier. Requires the vault:read scope.
Request
curl https://customer-api.fortary.io/v1/vaults/vault_3f8a2c1d9b \
-H "Authorization: Bearer fkc_..."
Response
{
"id": "vault_3f8a2c1d9b",
"label": "Treasury — Operating",
"networks": ["Ethereum", "Bitcoin"],
"createdAt": "2026-01-14T09:32:07Z"
}
id — the vault’s opaque identifier (vault_…). Treat it as opaque; pass back the exact string you received.
label — the human-readable name given to the vault.
networks — the networks the vault operates on, as friendly names.
createdAt — when the vault was created (UTC, ISO 8601).
A vault outside the credential’s access returns 404, not 403 — see Authorization.
Errors follow the standard error envelope.