Skip to main content
POST
/
api
/
v1
/
workers
/
distiller
/
run
curl -X POST https://alfred.black/api/v1/workers/distiller/run \
  -H "Authorization: Bearer alf_your_key_here" \
  -H "Content-Type: application/json"
{
  "records_scanned": 423,
  "candidates_found": 8,
  "learnings_extracted": 18
}
Scans your vault for extraction candidates and then runs the Distiller agent to extract knowledge. The Distiller analyzes candidate records and creates new learning records — assumptions, decisions, constraints, contradictions, and synthesis — for each piece of latent knowledge discovered.
project
string
Filter extraction to a specific project. If omitted, extracts from all candidates.Example: "acme-redesign"
curl -X POST https://alfred.black/api/v1/workers/distiller/run \
  -H "Authorization: Bearer alf_your_key_here" \
  -H "Content-Type: application/json"
{
  "records_scanned": 423,
  "candidates_found": 8,
  "learnings_extracted": 18
}
If the response contains structured JSON, it is returned directly. Otherwise, the output is returned in a raw field.
raw
string
Human-readable output when structured JSON is not available.