Skip to main content
GET
/
api
/
v1
/
vault
/
list
/
{type}
curl -X GET https://alfred.black/api/v1/vault/list/person \
  -H "Authorization: Bearer alf_your_key_here"
{
  "raw": "person/Alice Chen.md\nperson/Bob Martinez.md\nperson/Carol Zhang.md"
}

Overview

Returns a list of all records of a given type (e.g., person, task, decision). Use this to browse records by category.

Path Parameters

type
string
required
The record type to list. Must be one of:
  • Entity types: person, org, project, task, event, note, location, process, account, asset, conversation, input, run, session
  • Learning types: assumption, decision, constraint, contradiction, synthesis

Response

raw
string
List of records as text. If the output is structured JSON, it is returned directly instead.

Request Example

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

Response Example

{
  "raw": "person/Alice Chen.md\nperson/Bob Martinez.md\nperson/Carol Zhang.md"
}