Skip to main content
POST
/
list-transcriptions
List Transcriptions
curl --request POST \
  --url https://api.heify.com/list-transcriptions \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{}'
{
  "data": {
    "total_transcriptions": 3,
    "query_limit_reached": false,
    "statistics": {
      "completed": 2,
      "failed": 0,
      "in_progress": 1
    },
    "transcriptions": [
      {
        "transcription_id": "e6b7d4ce-c63d-42df-86a8-c3fabe203b2a",
        "status": "COMPLETED",
        "configuration_id": "3b8006ad-b1a2-464b-9a6b-79dcd45c9433",
        "configuration_tag": "Pitch Analysis DEMO",
        "duration": 542.82,
        "group": null,
        "name": null,
        "created_at": "2026-03-21T11:22:30.211193+00:00",
        "qa": {
          "score": 52.8,
          "critical_fail": false,
          "status": "COMPLETED",
          "participant_id": null,
          "evaluator_id": "2abb5563-dd64-47bb-bb17-94252e168b06",
          "participant_tag": null,
          "evaluator_tag": "pitch temporal"
        }
      }
    ]
  }
}
This endpoint returns lightweight metadata only — conversation, summary, extracted fields, and evaluation breakdown are not included. Use Get Transcription to retrieve full details for a specific transcription.
Results are capped at 20,000 transcriptions. If query_limit_reached is true, not all transcriptions are shown.

Authorizations

x-api-key
string
header
required

Body

application/json

The body is of type object.

Response

200 - application/json

Transcription listing returned successfully.

data
object