Assess Developmental Progress

https://app.myhealthnote.com/api/fhir/Dash/population/anthro/assess-development
POPULATION API GET ACTIVE 100/hour v1.0.0
Description

Assess child developmental progress based on achieved motor milestones compared to WHO standards.

Endpoint
https://app.myhealthnote.com/api/fhir/Dash/population/anthro/assess-development
Request Examples

cURL

curl -X GET \
  "https://app.myhealthnote.com/api/fhir/Dash/population/anthro/assess-development" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Accept: application/json"

JavaScript/Node.js

const response = await fetch("https://app.myhealthnote.com/api/fhir/Dash/population/anthro/assess-development", {
    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/population/anthro/assess-development",
    headers={
        "Authorization": "Bearer YOUR_ACCESS_TOKEN",
        "Accept": "application/json"
    }
)

print(response.json())
Parameters
Parameter Type Required Default Description
ageDays integer No - Age in days
ageMonths number No - Age in months
achievedMilestones array No - Array of achieved milestone names
Response Example
{
  "resourceType": "Bundle",
  "type": "searchset",
  "total": 1,
  "entry": [
    {
      "resource": {
        "resourceType": "Observation",
        "component": [
          {
            "code": {
              "coding": [
                {
                  "display": "Sitting without support"
                }
              ]
            },
            "valueCodeableConcept": {
              "coding": [
                {
                  "display": "normal"
                }
              ]
            }
          }
        ]
      }
    }
  ]
}
Try It Out

Enter your API token to test this endpoint: