Skip to main content
GET
/
api
/
v1
/
vault
/
context
curl -X GET https://alfred.black/api/v1/vault/context \
  -H "Authorization: Bearer alf_your_key_here"
{
  "raw": "127 records across 18 types.\n\nMost recent activity: 3 tasks updated today, 2 people added this week."
}

Overview

Returns a summary of your vault including record counts by type, recent activity, and overall statistics. Use this to get a quick snapshot of your vault’s current state.

Response

raw
string
Summary of your vault as human-readable text. If the response is structured JSON, it is returned directly instead.

Request Example

curl -X GET https://alfred.black/api/v1/vault/context \
  -H "Authorization: Bearer alf_your_key_here"

Response Example

{
  "raw": "127 records across 18 types.\n\nMost recent activity: 3 tasks updated today, 2 people added this week."
}