---
title: "Get transcript verifications"
method: GET
path: "/api/v0/verification"
tags: ["Transcripts"]
---

# Get transcript verifications

`GET /api/v0/verification`

Get transcript verification results for an inquiry. This endpoint retrieves all transcript verification results for a given inquiry, including verifications from all associated call logs.

## Query parameters

- `inquiry_id` string, required — Inquiry ID to get all verifications for

## Response `200`

Successful Response

- TranscriptVerificationsResponse — Response model for transcript verifications endpoint.
  - `success` boolean, required — Whether the request was successful
  - `count` integer, required — Number of verifications returned
  - `verifications` ExternalTranscriptVerification[], required — List of transcript verification results, sorted by creation time (newest first)
    - `id` string, required — Unique identifier for the verification
    - `inquiry_id` string, required — The inquiry ID this verification belongs to
    - `call_log_id` string, required — The call log ID this verification is for
    - `verification_items` ExternalVerificationItem[], required — List of individual verification items checked
      - `name` string, required — Name of the verification item
      - `description` string, required — Description of what is being verified
      - `status` string, required — Status of the verification (e.g., MET, NOT_MET, UNCLEAR, NOT_APPLICABLE)
      - `evidence` string — Evidence from the transcript supporting the status
      - `reasoning` string — AI reasoning for the verification result
      - `validation` object — Value-accuracy check comparing the recorded result value against the transcript. Contains status, recorded_value, transcript_value, evidence, and reasoning. Null when no corresponding recorded value exists for this item.
    - `creation_ts` string, required — Timestamp when the verification was created in ISO format

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/healthharbor/apis/health-harbor.md) · [All operations](https://skmtc.net/healthharbor/apis/health-harbor/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/healthharbor/health-harbor/revisions/f1047899ad24/schema)
