Description
Retrieve WHO Child Growth Standards data including weight-for-age, height-for-age, BMI-for-age, head circumference, and MUAC standards. Returns percentile curves for population reference.
Endpoint
https://app.myhealthnote.com/api/fhir/Dash/population/anthro/growth-standards
Request Examples
cURL
curl -X GET \
"https://app.myhealthnote.com/api/fhir/Dash/population/anthro/growth-standards" \
-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/growth-standards", {
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/growth-standards",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Accept": "application/json"
}
)
print(response.json())
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
type |
string | No | weight-for-age | Growth standard type: weight-for-age, height-for-age, bmi-for-age, head-circumference-for-age, muac-for-age |
gender |
string | No | - | Gender: male or female |
ageDays |
integer | No | - | Age in days |
ageMonths |
number | No | - | Age in months (converted to days) |
limit |
integer | No | 50 | Results per page |
offset |
integer | No | - | Pagination offset |
Response Example
{
"resourceType": "Bundle",
"type": "searchset",
"total": 100,
"entry": [
{
"resource": {
"resourceType": "Observation",
"code": {
"coding": [
{
"display": "Weight for age"
}
]
},
"valueRange": {
"low": {
"value": 2.5,
"unit": "kg"
},
"high": {
"value": 4.5,
"unit": "kg"
}
}
}
}
]
}
Try It Out
Enter your API token to test this endpoint: