Description
Retrieves aggregated healthcare SOS and emergency trend data filtered by geographic jurisdiction. This endpoint allows public health officials to monitor real-time clinical 'values' (such as height/weight metrics or specific emergency indicators) across countries, states, cities, and postal codes.
Endpoint
https://app.myhealthnote.com/api/fhir/Dash/population/getSOSTrends
Request Examples
cURL
curl -X GET \
"https://app.myhealthnote.com/api/fhir/Dash/population/getSOSTrends" \
-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/getSOSTrends", {
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/getSOSTrends",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Accept": "application/json"
}
)
print(response.json())
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
jurisdictionCountry |
string | No | - | Filter by 2-letter country code (e.g., US, GB). |
jurisdictionState |
string | No | - | Filter by state or province name. |
jurisdictionCity |
string | No | - | Filter by specific city name. |
jurisdictionPostalCode |
string | No | - | Filter by specific zip/postal code. |
Response Example
{
"success": true,
"metadata": {
"totalResults": 1,
"queriedJurisdiction": {
"country": "US",
"city": "New York"
}
},
"data": [
{
"values": {
"height": "175cm",
"emergencyType": "cardiac"
},
"date": "2026-03-08",
"createdAt": "2026-03-08T14:30:00.000Z",
"jurisdictionCity": "New York",
"jurisdictionPostalCode": "10001"
}
]
}
Try It Out
Enter your API token to test this endpoint: