Claims
Factual claims extracted from AI answers and verified against your facts.
GET /api/v1/claims returns Brand FactCheck's verified claims: one row per
factual statement an AI answer made about a tracked brand, checked against
the workspace's approved facts. Each row carries a run_id joinable to
runs, so a claim can always be traced back to the answer
that made it.
Filters
| Parameter | Meaning |
|---|---|
run_id | Restrict to one run's claims. |
brand_id | Restrict to one tracked brand. |
engine_id | Restrict to one engine. |
verdict | accurate, inaccurate, or unverifiable. |
theme_id | Restrict to one claim theme. |
review_state | auto, needs_review, confirmed, corrected, or suppressed. |
since / until | Bounds for created_at (ISO timestamp). |
Standard parameters (limit, offset, format=csv) work as described in
Pagination, filtering, and errors.
Key fields
claim_id: stable identifierrun_id,brand_id,engine_id: the answer, brand, and engine the claim came fromclaim_text: the factual statement as extracted from the answerverdict:accurate,inaccurate, orunverifiableagainst the workspace's approved factserror_class: for inaccurate claims,hallucination,outdated, orincorrect; null otherwiseconfidence: verification confidence between 0 and 1theme_id: the claim theme the statement clusters under, or nullreview_state:autofor trusted automatic verdicts,needs_reviewwhile a low-confidence verdict waits for a human,confirmedorcorrectedafter review,suppressedwhen feedback removed the claim from scoringcreated_at: when the claim was recorded
Rows are ordered by created_at descending with claim_id as the
tiebreak, so offset pagination is stable.
Claim themes
GET /api/v1/claim-themes returns the lookup table behind theme_id: the
canonical topics claims cluster under (for example "pricing" phrased many
ways). It accepts one filter, status (active, or merged for themes
folded into another), and exposes theme_id, canonical_label, and
status.
Example
curl -H "Authorization: Bearer $AEO_API_KEY" \
"https://app.citlyze.com/api/v1/claims?verdict=inaccurate&since=2026-08-01"Use this resource to audit exactly what AI engines state about your brand, which statements are wrong and why, and which themes the errors concentrate in. Window-level accuracy rollups are in accuracy aggregates.