Get a clinical note by ID
curl --request GET \
--url https://api.healos.ai/ext-api/v1/notes/{noteId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.healos.ai/ext-api/v1/notes/{noteId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.healos.ai/ext-api/v1/notes/{noteId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.healos.ai/ext-api/v1/notes/{noteId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.healos.ai/ext-api/v1/notes/{noteId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.healos.ai/ext-api/v1/notes/{noteId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.healos.ai/ext-api/v1/notes/{noteId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "9b2d4f6a-1c3e-4a5b-8d7f-0e1a2b3c4d5e",
"patient_id": "481926357104938271",
"session_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"note_type": "clinical_visit",
"specialty": "Cardiology",
"template_id": "<string>",
"template_name": "Follow-Up Patient Visit",
"created_at": "2026-03-15T09:30:00.000Z",
"updated_at": "2026-03-15T10:00:00.000Z",
"content": "<string>",
"problems": [
"Hypertension"
],
"procedures": [
"12-lead ECG"
],
"icd10_codes": {},
"cpt_codes": {},
"transcript": {
"text": "<string>",
"summary": "<string>",
"title": "Follow-up visit",
"status": "completed",
"session_date": "<string>",
"start_time": "<string>",
"end_time": "<string>"
},
"patient": {
"id": "481926357104938271",
"name": "Maria Santos",
"first_name": "<string>",
"last_name": "<string>",
"pronouns": "she/her",
"date_of_birth": "1985-04-12",
"gender": "female",
"email": "<string>",
"phone": "<string>",
"mrn": "MRN-00123",
"client_history": {
"medical_history": "<string>",
"family_history": "<string>",
"social_history": "<string>",
"previous_treatment": "<string>"
}
}
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Rate limit exceeded. Please retry after the window resets."
}Notes
Get a clinical note by ID
Full note (content + medical codes) with the session transcript and patient context embedded by default. Control embeds with the include query param.
GET
/
notes
/
{noteId}
Get a clinical note by ID
curl --request GET \
--url https://api.healos.ai/ext-api/v1/notes/{noteId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.healos.ai/ext-api/v1/notes/{noteId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.healos.ai/ext-api/v1/notes/{noteId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.healos.ai/ext-api/v1/notes/{noteId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.healos.ai/ext-api/v1/notes/{noteId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.healos.ai/ext-api/v1/notes/{noteId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.healos.ai/ext-api/v1/notes/{noteId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "9b2d4f6a-1c3e-4a5b-8d7f-0e1a2b3c4d5e",
"patient_id": "481926357104938271",
"session_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"note_type": "clinical_visit",
"specialty": "Cardiology",
"template_id": "<string>",
"template_name": "Follow-Up Patient Visit",
"created_at": "2026-03-15T09:30:00.000Z",
"updated_at": "2026-03-15T10:00:00.000Z",
"content": "<string>",
"problems": [
"Hypertension"
],
"procedures": [
"12-lead ECG"
],
"icd10_codes": {},
"cpt_codes": {},
"transcript": {
"text": "<string>",
"summary": "<string>",
"title": "Follow-up visit",
"status": "completed",
"session_date": "<string>",
"start_time": "<string>",
"end_time": "<string>"
},
"patient": {
"id": "481926357104938271",
"name": "Maria Santos",
"first_name": "<string>",
"last_name": "<string>",
"pronouns": "she/her",
"date_of_birth": "1985-04-12",
"gender": "female",
"email": "<string>",
"phone": "<string>",
"mrn": "MRN-00123",
"client_history": {
"medical_history": "<string>",
"family_history": "<string>",
"social_history": "<string>",
"previous_treatment": "<string>"
}
}
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Rate limit exceeded. Please retry after the window resets."
}Authorizations
API key obtained from /api/v1/ext-api-keys
Path Parameters
Clinical note UUID
Example:
"9b2d4f6a-1c3e-4a5b-8d7f-0e1a2b3c4d5e"
Query Parameters
Comma-separated embedded blocks: transcript, patient. Defaults to both; pass include= to omit all (note body + codes always returned).
Example:
"transcript,patient"
Response
Note detail
Show child attributes
Show child attributes
Was this page helpful?
⌘I

