getHeartRate
Retrieve heart rate data from Fitbit for health monitoring and analysis. Specify a date or time period to access detailed heart rate metrics for fitness tracking.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Date in YYYY-MM-DD format. If not specified, will use today. | |
| period | No | Period for heart rate data: 1d, 7d, 30d |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Date in YYYY-MM-DD format. If not specified, will use today.",
"type": "string"
},
"period": {
"description": "Period for heart rate data: 1d, 7d, 30d",
"type": "string"
}
},
"type": "object"
}