Search ICD-10 Codes

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

Search and filter International Classification of Diseases (ICD-10) codes with advanced query capabilities.

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

cURL

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

print(response.json())
Parameters
Parameter Type Required Default Description
code string No - ICD-10 code (exact or wildcard: A*, B?5)
_text string No - Search in descriptions, chapter titles, block titles
chapter string No - Chapter number or title
block string No - Block title search
inclusion string No - Search in inclusion criteria
exclusion string No - Search in exclusion criteria
billable boolean No - Filter billable codes only
_count integer No 50 Results per page (max 100)
_page integer No 1 Page number
Response Example
{
  "resourceType": "Bundle",
  "type": "searchset",
  "total": 1500,
  "entry": [
    {
      "resource": {
        "resourceType": "CodeSystem",
        "code": "A00",
        "display": "Cholera",
        "chapter": "I. Certain infectious and parasitic diseases",
        "block": "Intestinal infectious diseases"
      }
    }
  ]
}
Try It Out

Enter your API token to test this endpoint: