Skip to main content
GET
/
api
/
v0
/
verification
Get transcript verifications
curl --request GET \
  --url https://api.example.com/api/v0/verification \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "count": 123,
  "verifications": [
    {
      "id": "<string>",
      "inquiry_id": "<string>",
      "call_log_id": "<string>",
      "verification_items": [
        {
          "name": "<string>",
          "description": "<string>",
          "status": "<string>",
          "evidence": "<string>",
          "reasoning": "<string>"
        }
      ],
      "creation_ts": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

inquiry_id
string
required

Inquiry ID to get all verifications for

Response

Successful Response

Response model for transcript verifications endpoint.

success
boolean
required

Whether the request was successful

count
integer
required

Number of verifications returned

verifications
ExternalTranscriptVerification · object[]
required

List of transcript verification results, sorted by creation time (newest first)