ReferenceKnowledge graph

Get an entity timeline

Every recorded value of every attribute, with both timestamps that matter: when the fact was **true** (`valid_at`) and when Chordian **learned** it (`recorded_…

Every recorded value of every attribute, with both timestamps that matter: when the fact was true (valid_at) and when Chordian learned it (recorded_at).

That pair is what lets you answer "what did we believe on 1 June, and when did we find out otherwise?" — an ordinary knowledge base cannot.

GET
/api/v1/memory/kg/entity/{entity_id}/timeline

Authorization

x-api-key<token>

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

In: header

Path Parameters

entity_id*string

Response Body

application/json

curl -X GET "https://example.com/api/v1/memory/kg/entity/ent_acme_corp/timeline"
{  "entity_id": "string",  "history": [    {      "attribute": "string",      "value": "string",      "confidence": 0.1,      "source_id": "string",      "valid_at": "2019-08-24T14:15:22Z",      "recorded_at": "2019-08-24T14:15:22Z"    }  ]}
Was this page helpful?
Report an issue