Skip to main content
GET
https://api.tracelm.ai
/
api
/
v1
/
verification
/
results
/
{trace_id}
Get Verification Results
curl --request GET \
  --url https://api.tracelm.ai/api/v1/verification/results/{trace_id}
{
  "trace_id": "<string>",
  "status": "<string>",
  "trust_score": 123,
  "claims": [
    {}
  ],
  "verifiers_used": [
    {}
  ],
  "verified_at": "<string>",
  "duration_ms": 123
}
Returns the verification results for a previously verified trace.

Path Parameters

trace_id
string
required
The trace ID to get verification results for

Response

trace_id
string
The trace ID
status
string
Verification status: pending, completed, failed
trust_score
number
Overall trust score (0-100)
claims
array
Array of verified claims with evidence
verifiers_used
array
List of verifiers that were executed
verified_at
string
Verification completion timestamp (ISO 8601)
duration_ms
integer
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

StatusDescription
pendingVerification is still running
completedVerification finished successfully
failedVerification 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.