Get the BMI measurement from a specific point in time.

Returns the latest bmi reading
GET https://api.humanapi.co/v1/human/bmi

Returns all bmi readings
GET https://api.humanapi.co/v1/human/bmi/readings

# Returns a json object of bmi:
{
  "id": "5506f5080ba9b35f0af6cc89",
  "userId": "52e20cb2fff56aac62000001",
  "timestamp": "2015-03-16T23:59:59.000Z",
  "tzOffset": "-07:00",
  "value": 30.26,
  "unit": "kg/m2",
  "source": "fitbit",
  "sourceData": {},
  "createdAt": "2015-03-16T15:21:44.304Z",
  "updatedAt": "2015-03-16T15:24:48.492Z",
  "humanId": "5dc2527186aaf9de560e5841f1a44bd6"
}
# Get latest bmi measurement associated with the user
curl -H "Authorization: Bearer demo" "https://api.humanapi.co/v1/human/bmi"
PropertyTypeDescription
idStringThe id of the resource.
userIdString[deprecated - use humanId]
humanIdStringUnique user identifier
timestampDateThe original date and time of the measurement
tzOffsetStringThe offset from UTC time in +/-hh:mm (e.g. -04:00)
sourceStringThe source service for the measurement, where it was created
unitStringThe unit of the measurement value
valueNumberThe value of the measurement in the unit specified
createdAtDateThe time the measurement was created on the Human API server
updatedAtDateThe time the measurement was updated on the Human API server