ReferenceKnowledge quality

List contradictions

Facts your sources disagree about.

When two sources conflict, Chordian records the disagreement instead of letting the most recent write silently win. Nothing is blocked and no sync slows down — detection is an alert, never a gate.

GET
/api/v1/memory/contradictions

Authorization

x-api-key<token>

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

In: header

Query Parameters

status?string
Default"pending"

Value in

  • "pending"
  • "resolved"
severity?string

Value in

  • "low"
  • "medium"
  • "high"
entity_id?string

Response Body

application/json

curl -X GET "https://example.com/api/v1/memory/contradictions"
{  "contradictions": [    {      "contradiction_id": "string",      "entity_id": "string",      "entity_name": "string",      "attribute": "string",      "type": "value_conflict",      "severity": "low",      "existing": {        "value": "string",        "confidence": 0.1,        "source_id": "string",        "recorded_at": "2019-08-24T14:15:22Z"      },      "incoming": {        "value": "string",        "confidence": 0.1,        "source_id": "string",        "recorded_at": "2019-08-24T14:15:22Z"      },      "status": "pending",      "resolution": "accept_incoming",      "created_at": "2019-08-24T14:15:22Z"    }  ]}
Was this page helpful?
Report an issue