ReferenceKnowledge quality

Get memory health

A report card for the **quality of the knowledge** — not its security.

Four dimensions, weighted into one A–F grade:

DimensionWeightA low score means
Freshness0.30A source stopped syncing
Coverage0.25Many entities, thin supporting evidence
Connectivity0.20Isolated entities with no relationships
Coherence0.25A backlog of duplicates or contradictions

Recomputed nightly and also scored per department, so you can see which areas are strong and which need work.

GET
/api/v1/memory/health/latest

Authorization

x-api-key<token>

A platform key (ck_live_…) — reaches every memory in the tenant.

In: header

Query Parameters

vault_id?string

Score one department instead of the whole memory.

Response Body

application/json

curl -X GET "https://example.com/api/v1/memory/health/latest"
{  "score": 0.1,  "grade": "A",  "dimensions": {    "freshness": 0.1,    "coverage": 0.1,    "connectivity": 0.1,    "coherence": 0.1  },  "summary": "string",  "issues": [    {      "type": "string",      "severity": "critical",      "description": "string",      "suggestion": "string",      "entity_id": "string"    }  ],  "measured_at": "2019-08-24T14:15:22Z"}
Was this page helpful?
Report an issue