Skip to content
  • There are no suggestions because the search field is empty.

Health Connect Total Calories Burned Records Export Format

The Total Calories Burned export contains data about calories burned, including active and basal energy burned (BMR), by a user over a time interval.

Data Fields

Field

Description

HealthConnectRecordKey

A unique key for this Health Connect Record.

ParticipantIdentifier

The identifier of the participant this record is for. Can be used to cross reference with Participants.

ParticipantID

The stable, automatically generated, internal system identifier for this participant. Universally unique identifier (UUID).

MetadataOriginPackageName

The package name of the application that generated this record.

MetadataLastModifiedTime

When the data was last modified (or originally created) by the application, in ISO 8601 format. Is always in UTC.

MetadataClientRecordID

Optional client-supplied record unique data identifier associated with this record.

MetadataClientRecordVersion

Optional client-supplied version associated with this record.

MetadataDeviceManufacturer

Optional client-supplied manufacturer of the device associated with this record.

MetadataDeviceModel

Optional client-supplied model of the device associated with this record.

MetadataDeviceType

Optional client-supplied manufacturer of the device associated with this record.

MetadataRecordingMethod

Whether the record was generated manually or automatically, if known.

InsertedDate

The date MyDataHelps received the data from Health Connect, in ISO 8601 format. Is always in UTC.

StartTime

The time the record started, in ISO 8601 format. Includes timezone offset information. 

StartZoneOffsetSetAtUpload

Whether the time zone offset applied to `StartTime` was derived from the mobile device's zone offset when the data was uploaded. "True" if derived in this way, "False", Null (CSV) or missing property (JSON) if zone offset was provided by Health Connect.

EndTime

The time the record ended, in ISO 8601 format. Includes timezone offset information. 

EndZoneOffsetSetAtUpload

Whether the time zone offset applied to `EndTime` was derived from the mobile device's zone offset when the data was uploaded. "True" if derived in this way, "False", Null (CSV) or missing property (JSON) if zone offset was provided by Health Connect.

EnergyValue

The amount of energy burned during this record.

EnergyType

The measurement unit of `EnergyValue`, one of:

  • `"CALORIES"`

  • `"KILOCALORIES"`

  • `"JOULES"`

  • `"KILOJOULES"`

Sample CSV Export

HealthConnectRecordKey,ParticipantIdentifier,ParticipantID,MetadataDataOriginPackageName,MetadataLastModifiedTime,MetadataClientRecordID,MetadataClientRecordVersion,MetadataDeviceManufacturer,MetadataDeviceModel,MetadataDeviceType,MetadataRecordingMethod,InsertedDate,StartTime,StartZoneOffsetSetAtUpload,EndTime,EndZoneOffsetSetAtUpload,EnergyValue,EnergyType
55c951a7-9429-3cdd-8bc2-20729cc01124,TST123456,1be320d5-57fa-4860-8fa2-033b27038c4e,com.garmin.android.apps.connectmobile,2026-03-24T09:02:21.107Z,1774238400000,1,,,TYPE_WATCH,RECORDING_METHOD_AUTOMATICALLY_RECORDED,2026-04-01T13:09:50Z,2026-03-23T00:00:00.000-04:00,,2026-03-23T23:59:59.000-04:00,,2076000.0,CALORIES

Sample JSON Export

{
  "HealthConnectRecordKey": "55c951a7-9429-3cdd-8bc2-20729cc01124",
    "ParticipantIdentifier": "TST123456",
    "ParticipantID": "1be320d5-57fa-4860-8fa2-033b27038c4e",
"InsertedDate": "2026-04-01T13:09:50Z",
"Metadata": {
  "DataOriginPackageName": "com.garmin.android.apps.connectmobile",
  "LastModifiedTime": "2026-03-24T09:02:21.107Z",
"ClientRecordID": "1774238400000",
  "ClientRecordVersion": "0",
"Device": { "Type": "TYPE_WATCH" },
  "RecordingMethod": "RECORDING_METHOD_AUTOMATICALLY_RECORDED",
},
  "StartTime": "2026-03-23T00:00:00.000-04:00",
  "EndTime": "2026-03-23T23:59:59.000-04:00", 
"Energy": {
    "Type": "CALORIES",
"Value": 2076000.0
  }
}