Skip to main content
Every causal assertion generated by Wu-Weism — whether from the causal chat, hybrid synthesize pipeline, or legal reasoning feature — is recorded as a claim in your account’s claim ledger. Claims carry a confidence score, uncertainty label, and provenance links back to the trace and session that produced them.
All claims endpoints require authentication. Include your session token in the Authorization header.

List claims

Returns a paginated list of claims for your account. Filter by session, trace, or source feature to narrow results.

Query parameters

limit
number
default:"20"
Maximum number of claims to return. Accepted range: 1–100. Defaults to 20.
sourceFeature
string
Filter claims by the feature that produced them. One of:
  • chat — claims from the causal chat interface
  • hybrid — claims from the hybrid synthesize pipeline
  • legal — claims from the legal reasoning feature
sessionId
string
Filter claims to a specific session UUID. Returns only claims produced in that session.
traceId
string
Filter claims linked to a specific counterfactual trace UUID.

Response fields

success
boolean
required
true when the request succeeds.
claims
object[]
required
Array of claim objects.

Example


Get a specific claim

Returns the full record for a single claim, including evidence links and gate decisions from the causal reasoning pipeline.

Path parameters

claimId
string
required
UUID of the claim to retrieve.

Response fields

All fields from the list response apply. The full record also includes:
Documents, PDF analyses, or external sources that support this claim.
gate_decisions
object[]
required
Records of each gate the claim passed through in the reasoning pipeline (e.g., novelty gate, integrity gate). Empty array if no gates were applied.

Example