Description
Get list of all ICD-10 chapters with code ranges and statistics.
Endpoint
https://app.myhealthnote.com/api/fhir/Dash/system/icd10/chapters
Request Examples
cURL
curl -X GET \
"https://app.myhealthnote.com/api/fhir/Dash/system/icd10/chapters" \
-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/icd10/chapters", {
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/icd10/chapters",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Accept": "application/json"
}
)
print(response.json())
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
version |
string | No | 2024 | ICD-10 version year |
Try It Out
Enter your API token to test this endpoint: