Get the blood pressure measurement from a specific point in time.
Returns the latest blood pressure reading
GET https://api.humanapi.co/v1/human/blood_pressure
Returns all blood pressure readings
GET https://api.humanapi.co/v1/human/blood_pressure/readings
# Returns a json object of blood pressure:
{
"id": "550b8a8e834dd16f259683b1",
"userId": "52e20cb2fff56aac62000001",
"timestamp": "2015-03-19T22:48:26.000Z",
"tzOffset": "-07:00",
"systolic": 117,
"diastolic": 76,
"unit": "mmHg",
"heartRate": 66,
"source": "ihealth",
"createdAt": "2015-03-20T02:48:46.925Z",
"updatedAt": "2015-03-20T02:48:46.925Z",
"humanId": "5dc2527186aaf9de560e5841f1a44bd6"
}
# Get the latest blood pressure measurement associated with the user
curl -H "Authorization: Bearer demo" "https://api.humanapi.co/v1/human/blood_pressure"
Property | Type | Description |
---|---|---|
id | String | The id of the resource. |
userId | String | [deprecated - use humanId] |
humanId | String | Unique user identifier |
timestamp | Date | The original date and time of the measurement |
tzOffset | String | The offset from UTC time in +/-hh:mm (e.g. -04:00) |
source | String | The source service for the measurement, where it was created |
unit | String | The unit of the measurement value |
heartRate | String | The heart rate in BPM captured at the time of measurement |
systolic | String | The systolic value captured at the time of measurement |
diastolic | String | The diastolic value captured at the time of measurement |
createdAt | Date | The time the measurement was created on the Human API server |
updatedAt | Date | The time the measurement was updated on the Human API server |