# Get transcription for a note Retrieve the transcription of a clinical note's audio recording. Returns both raw text and structured transcription data with timestamps. Endpoint: GET /notes/{id}/transcription Version: 1.0.0 Security: BearerAuth ## Path parameters: - `id` (string, required) Unique identifier of the note Example: "550e8400-e29b-41d4-a716-446655440000" ## Response 200 fields (application/json): - `text` (string, required) Raw transcription text Example: "Patient reports experiencing mild discomfort in the lower back..." - `object` (object, required) Structured transcription data Example: {"segments":[{"start":0,"end":15.2,"text":"Patient reports experiencing mild discomfort"},{"start":15.2,"end":30.5,"text":"in the lower back region for the past two days"}]} - `object.segments` (array) Example: [{"start":0,"end":15.2,"text":"Patient reports experiencing mild discomfort"},{"start":15.2,"end":30.5,"text":"in the lower back region for the past two days"}] - `object.segments.start` (number) - `object.segments.end` (number) Example: 15.2 - `object.segments.text` (string) Example: "Patient reports experiencing mild discomfort" - `createdAt` (string, required) Example: "2025-09-11T10:00:00Z" ## Response 400 fields (application/json): - `success` (boolean, required) - `message` (string, required) Example: "You are not authorized to perform this operation" ## Response 401 fields (application/json): - `success` (boolean, required) - `message` (string, required) Example: "You are not authorized to perform this operation" ## Response 404 fields (application/json): - `success` (boolean, required) - `message` (string, required) Example: "You are not authorized to perform this operation"