> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tracelm.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Verify Trace

> Trigger verification for a trace

Starts verification for a trace and computes trust/claim-level results.

## Path Parameters

<ParamField path="trace_id" type="string" required>
  Trace UUID.
</ParamField>

## Body

<ParamField body="force_reverify" type="boolean" default="false">
  Re-run verification even if trace is already verified.
</ParamField>

<ParamField body="verifiers" type="array">
  Optional verifier list: `kb`, `web`, `multi_model`, `citation`.
</ParamField>

<ParamField body="async_mode" type="boolean" default="true">
  Run in background when true.
</ParamField>

## Response

```json theme={null}
{
  "trace_id": "...",
  "status": "pending",
  "message": "Verification started in background. Poll GET /api/v1/verification/traces/{trace_id} for results.",
  "trust_score": null
}
```
