Skip to main content
GET
/
api
/
v1
/
vault
/
records
/
{path}
curl -X GET \
  "/api/v1/vault/records/person/Alice%20Chen.md" \
  -H "Authorization: Bearer alf_your_key_here"
{
  "raw": "---\ntype: person\nrole: ML Engineer\norg: \"[[org/Acme Corp]]\"\nstatus: active\n---\n\n## Background\n\nAlice joined Acme in December 2025 as a senior ML engineer."
}

Overview

Returns the full content of a vault record including its metadata and body.

Path Parameters

path
string
required
Relative path to the record (e.g., person/Alice Chen.md). URL-encode spaces and special characters.

Response

raw
string
The full record content (metadata + body) as text. If the output is structured JSON, it is returned directly instead.

Request Example

curl -X GET \
  "/api/v1/vault/records/person/Alice%20Chen.md" \
  -H "Authorization: Bearer alf_your_key_here"

Response Example

{
  "raw": "---\ntype: person\nrole: ML Engineer\norg: \"[[org/Acme Corp]]\"\nstatus: active\n---\n\n## Background\n\nAlice joined Acme in December 2025 as a senior ML engineer."
}