cURL
curl --request GET \ --url https://{subdomain}.mihu.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" } }
Retrieves a transcription’s details and results by its UUID.
Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"
UUID of the transcription
"550e8400-e29b-41d4-a716-446655440000"
Success
true
""
Show child attributes
"CALL-12345"
pending
processing
completed
failed
"completed"
"https://s3.amazonaws.com/bucket/transcriptions/uuid.mp3"
"en"
"This is the transcribed text..."
null
"153580ac-af27-4c77-aa59-02e9f9b8fe1a"
"6d4adde3-8fb0-4893-87e1-83f950723f4e"