Skip to main content

Overview

This endpoint retrieves all transcript verification results for a given inquiry. Transcript verifications contain AI-verified information extracted from call transcripts, including verification items that check specific criteria (e.g., patient eligibility, coverage details, etc.). The results are returned sorted by creation time, with the most recent verification first.

Example Request

curl -u [PROJECT_ID]:[API_KEY] --request GET "https://healthharbor.co/api/v0/verification?inquiry_id={INQUIRY_ID}

Response

The response includes a list of all verifications for the inquiry, sorted by creation time (newest first):
{
  "success": true,
  "count": 2,
  "verifications": [
    {
      "id": "verification_123",
      "inquiry_id": "INQUIRY_ID",
      "call_log_id": "call_log_456",
      "verification_items": [
        {
          "name": "Patient Eligibility",
          "description": "Verifies that the patient is eligible for coverage",
          "status": "MET",
          "evidence": "Representative confirmed patient is active",
          "reasoning": "The transcript shows clear confirmation of active status"
        }
      ],
      "creation_ts": "2024-03-19T10:30:00Z"
    }
  ]
}
If no verifications are found for the inquiry, the endpoint returns an empty array with count: 0.