Skip to main content
GET
/
api
/
v1
/
transcriptions
/
{uuid}
Get transcription by UUID
curl --request GET \
  --url https://{subdomain}.mindhunters.ai/api/v1/transcriptions/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "",
  "data": {
    "uuid": "550e8400-e29b-41d4-a716-446655440000",
    "reference_id": "CALL-12345",
    "status": "completed",
    "s3_file_path": "https://s3.amazonaws.com/bucket/transcriptions/uuid.mp3",
    "s3_file_url": "https://s3.amazonaws.com/bucket/transcriptions/uuid.mp3",
    "possible_language": "en",
    "transcription_result": "This is the transcribed text...",
    "error_message": null,
    "created_at": "2023-11-07T05:31:56Z",
    "processed_at": "2023-11-07T05:31:56Z",
    "qa_agent_uuid": "153580ac-af27-4c77-aa59-02e9f9b8fe1a",
    "coaching_agent_uuid": "6d4adde3-8fb0-4893-87e1-83f950723f4e"
  }
}

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