Returns the verification results for a previously verified trace.
Path Parameters
The trace ID to get verification results for
Response
Verification status: pending, completed, failed
Overall trust score (0-100)
Array of verified claims with evidence
List of verifiers that were executed
Verification completion timestamp (ISO 8601)
Time taken to complete verification
Example
curl -X GET "https://api.tracelm.ai/api/v1/verification/results/trace_abc123" \
-H "X-API-Key: $TRACELM_API_KEY"
Response
{
"trace_id": "trace_abc123",
"status": "completed",
"trust_score": 85,
"claims": [
{
"claim_text": "Tesla was founded in 2003",
"verdict": "supported",
"confidence": 0.95,
"evidence": [
{
"source": "knowledge_base",
"fact": "Tesla, Inc. was incorporated on July 1, 2003",
"relevance": 0.98
}
]
},
{
"claim_text": "Elon Musk is the founder of Tesla",
"verdict": "contradicted",
"confidence": 0.88,
"evidence": [
{
"source": "knowledge_base",
"fact": "Tesla was founded by Martin Eberhard and Marc Tarpenning. Elon Musk joined as chairman in 2004",
"relevance": 0.96
}
]
}
],
"verifiers_used": ["knowledge_base", "web_search"],
"verified_at": "2024-01-15T10:35:00Z",
"duration_ms": 1250
}
Status Values
| Status | Description |
|---|
pending | Verification is still running |
completed | Verification finished successfully |
failed | Verification encountered an error |
If the status is pending, the trust_score and claims fields may not be available yet. Poll again after a short delay.