# Get a specific note Retrieve a specific clinical note by its ID. Returns the note's content and metadata. Endpoint: GET /notes/{id} 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): - `note` (string, required) The clinical note content Example: "Patient presented with..." - `status` (string, required) Current status of the note Enum: "pending", "success", "error" - `createdAt` (string, required) Note creation timestamp Example: "2025-09-11T10:00:00Z" - `template` (object,null) Template information used for the note Example: {"name":"Clinical Note Template","id":"550e8400-e29b-41d4-a716-446655440000"} - `template.name` (string) Name of the template Example: "Clinical Note Template" - `template.id` (string) ID of the template Example: "550e8400-e29b-41d4-a716-446655440000" - `noteObject` (object,null) Structured note object data - `language` (string) Language of the note (e.g., english, spanish) Example: "english" - `billingCodes` (object) Clinical billing codes (CPT and ICD codes) associated with the note Example: {"status":"success","cptCodes":[{"code":"99213","active":true,"reason":"Comprehensive examination performed","thumbs":null,"confidence":0.9,"description":"Office visit, established patient","sourceSentence":["On examination findings..."]}],"icdCodes":[{"code":"J20.8","active":true,"reason":"Provider diagnoses viral bronchitis","thumbs":null,"confidence":0.85,"description":"Acute bronchitis due to other specified organisms","sourceSentence":["Patient reports symptoms..."]}]} - `billingCodes.status` (string) Status of the clinical coding data Enum: "processing", "success" - `billingCodes.cptCodes` (array) Current Procedural Terminology codes with detailed information Example: [{"code":"99213","active":true,"reason":"Comprehensive examination performed","thumbs":null,"confidence":0.9,"description":"Office visit, established patient","sourceSentence":["On examination findings..."]}] - `billingCodes.cptCodes.code` (string, required) CPT code Example: "99213" - `billingCodes.cptCodes.active` (boolean, required) Whether the code is active/applicable Example: true - `billingCodes.cptCodes.reason` (string,null) Reason for the code assignment Example: "Comprehensive examination performed" - `billingCodes.cptCodes.thumbs` (string,null) User feedback on code accuracy - `billingCodes.cptCodes.confidence` (number, required) AI confidence score for the code assignment Example: 0.9 - `billingCodes.cptCodes.description` (string, required) Human-readable description of the code Example: "Office visit, established patient" - `billingCodes.cptCodes.sourceSentence` (array) Source sentences from the note that support the code Example: ["On examination findings..."] - `billingCodes.icdCodes` (array) International Classification of Diseases codes with detailed information Example: [{"code":"J20.8","active":true,"reason":"Provider diagnoses viral bronchitis","thumbs":null,"confidence":0.85,"description":"Acute bronchitis due to other specified organisms","sourceSentence":["Patient reports symptoms..."]}] - `billingCodes.icdCodes.code` (string, required) ICD code Example: "J20.8" ## 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"