Get the user’s vitals readings
Returns a list of vitals readings
GET https://api.humanapi.co/v1/human/medical/vitals
Returns a single vitals reading
GET https://api.humanapi.co/v1/human/medical/vitals/{id}
# Returns a json array of vitals:
[
{
"author": "Maxwell Forrest",
"createdAt": "2014-09-02T05:50:22.654Z",
"dateTime": "2014-08-18T16:04:00.000Z",
"id": "55e6914a0c7deefb7cfe90f6",
"organization": {
"href": "/medical/organizations/53c050ac51c69003200aa998",
"id": "53c050ac51c69003200aa998",
"name": "Cleveland Clinic"
},
"results": [
{
"codes": [
{
"code": "8480-6",
"codeSystem": "2.16.840.1.113883.6.1",
"codeSystemName": "LOINC",
"name": "SYSTOLIC BLOOD PRESSURE"
}
],
"name": "SYSTOLIC BLOOD PRESSURE",
"unit": "mm[Hg]",
"value": "102"
},
{
"codes": [
{
"code": "8462-4",
"codeSystem": "2.16.840.1.113883.6.1",
"codeSystemName": "LOINC",
"name": "DIASTOLIC BLOOD PRESSURE"
}
],
"name": "DIASTOLIC BLOOD PRESSURE",
"unit": "mm[Hg]",
"value": "70"
},
{
"codes": [
{
"code": "8867-4",
"codeSystem": "2.16.840.1.113883.6.1",
"codeSystemName": "LOINC",
"name": "HEART RATE"
}
],
"name": "HEART RATE",
"unit": "/min",
"value": "80"
},
{
"codes": [
{
"code": "8302-2",
"codeSystem": "2.16.840.1.113883.6.1",
"codeSystemName": "LOINC",
"name": "HEIGHT"
}
],
"name": "HEIGHT",
"unit": "cm",
"value": "157.5"
},
{
"codes": [
{
"code": "3141-9",
"codeSystem": "2.16.840.1.113883.6.1",
"codeSystemName": "LOINC",
"name": "WEIGHT"
}
],
"name": "WEIGHT",
"unit": "kg",
"value": "61.871"
},
{
"codes": [
{
"code": "39156-5",
"codeSystem": "2.16.840.1.113883.6.1",
"codeSystemName": "LOINC",
"name": "BODY MASS INDEX"
}
],
"name": "BODY MASS INDEX",
"unit": "kg/m2",
"value": "24.94"
}
],
"source": "emr-1-320",
"updatedAt": "2014-09-02T05:50:22.654Z"
}
]
# Get all vitals readings associated with the user
curl -H "Authorization: Bearer demo" "https://api.humanapi.co/v1/human/medical/vitals"
Response Properties
Property | Type | Description |
---|---|---|
id | String | The Id of the resource |
source | String | The name of the originating service |
updatedAt | Date | The time the record was updated on the Human API server |
createdAt | Date | The time the record was created on the Human API server |
name | String | (optional) Name representing the set of vitals |
dateTime | String | (optional) The date of the vitals reading |
author | String | (optional) The name of the vitals reading author (e.g. doctor) |
codes | Array[Object] | (optional) A list of all codes. See codes object |
results | Array[Object] | (optional) A list of all test results (see results object) |
ccd | Object | See CCD object |
organization | Object | See organizations object |
Results Object
Property | Type | Description |
---|---|---|
name | String | (optional) The name of the test component e.g. ‘HEIGHT’, 'WEIGHT’, 'BODY TEMPERATURE’ |
value | String | (optional) The test result value |
unit | String | (optional) The unit of the value - if provided e.g. 'kg’, ’%’, 'Cel’ |
codes | Array[Object] | (optional) See codes |
normalizedName | String | (optional) The normalized name of the measurement e.g. "Body Mass Index (BMI)" |
raw | Object | (optional) Un-normalized content as represented from the source. See raw object |
values | Array[Object] | (optional) Array of objects containing values, which are converted into standard units. Useful for showing data on a graph, or performing math functions. |
CCD Object
Property | Type | Description |
---|---|---|
id | String | Id of the CCD |
href | String | URL to retrieve CCD details |
Raw object
Property | Type | Description |
---|---|---|
value | String | (optional) Value of the result |
unit | String | (optional) Unit of the result |
name | String | (optional) Name of the result |
codes | Array[Object] | (optional) See codes |
Value object
Property | Type | Description |
---|---|---|
value | Float | (optional) Value of result |
unit | String | (optional) Unit of result |