Skip to main content
GET
/
api
/
v1
/
transcriptions
/
{uuid}
/
transcript
Get full transcript with conversation messages and evaluations
curl --request GET \
  --url https://{subdomain}.mindhunters.ai/api/v1/transcriptions/{uuid}/transcript \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "",
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "reference_id": "<string>",
    "status": "completed",
    "qa_agent_uuid": "153580ac-af27-4c77-aa59-02e9f9b8fe1a",
    "coaching_agent_uuid": "6d4adde3-8fb0-4893-87e1-83f950723f4e",
    "conversation": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "plain": "<string>",
      "messages": [
        {
          "role": "Customer",
          "content": "Hello, I need help"
        }
      ]
    },
    "session": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "type": "voice",
      "status": "completed"
    },
    "evaluations": {},
    "processed_at": "2023-11-07T05:31:56Z",
    "timestamp": 123
  }
}

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

UUID of the transcription

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

Success

success
boolean
Example:

true

message
string
Example:

""

data
object