Description
Preview all languages with clinical-grade translation available through the MyHealthNote Ecosystem worldwide.
Endpoint
https://app.myhealthnote.com/api/fhir/Dash/system/languages
Request Examples
cURL
curl -X GET \
"https://app.myhealthnote.com/api/fhir/Dash/system/languages" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Accept: application/json"
JavaScript/Node.js
const response = await fetch("https://app.myhealthnote.com/api/fhir/Dash/system/languages", {
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Accept": "application/json"
}
});
const data = await response.json();
console.log(data);
Python
import requests
response = requests.get(
"https://app.myhealthnote.com/api/fhir/Dash/system/languages",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Accept": "application/json"
}
)
print(response.json())
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
search |
string | No | - | Search by language name |
minPriority |
integer | No | - | Minimum medical priority (1-100) |
platform |
string | No | - | Filter by platform support (myhealthnote, epistatearch, buddort) |
Try It Out
Enter your API token to test this endpoint: