Get Motor Milestones

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

Retrieve WHO motor development milestones including sitting, crawling, standing, and walking achievements by age and percentile.

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

cURL

curl -X GET \
  "https://app.myhealthnote.com/api/fhir/Dash/population/anthro/motor-milestones" \
  -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/motor-milestones", {
    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/motor-milestones",
    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
milestoneName string No - Specific milestone name
percentile string No 50th Percentile: 50th, 90th, 95th, etc.
limit integer No 50 Results per page
Response Example
{
  "resourceType": "Bundle",
  "type": "searchset",
  "total": 6,
  "entry": [
    {
      "resource": {
        "resourceType": "Observation",
        "valueString": "Sitting without support",
        "component": [
          {
            "valueQuantity": {
              "value": 180,
              "unit": "days"
            }
          }
        ]
      }
    }
  ]
}
Try It Out

Enter your API token to test this endpoint: