Get ICD-10 Code Details

https://app.myhealthnote.com/api/fhir/Dash/system/icd10/{code}
SYSTEM API GET ACTIVE 200/hour v1.0.0
Description

Get detailed information about a specific ICD-10 code including hierarchy, inclusions, exclusions, and clinical notes.

Endpoint
https://app.myhealthnote.com/api/fhir/Dash/system/icd10/{code}
Request Examples

cURL

curl -X GET \
  "https://app.myhealthnote.com/api/fhir/Dash/system/icd10/{code}" \
  -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/{code}", {
    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/{code}",
    headers={
        "Authorization": "Bearer YOUR_ACCESS_TOKEN",
        "Accept": "application/json"
    }
)

print(response.json())
Parameters
Parameter Type Required Default Description
code string Yes - ICD-10 code (e.g., A00, I10, F32.9)
Try It Out

Enter your API token to test this endpoint: