getDistance
Retrieve distance data from Fitbit activity tracking for specified date ranges. Use to access daily, weekly, or monthly distance metrics for fitness analysis and progress monitoring.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | Date in YYYY-MM-DD format. If not specified, will use today. | |
period | No | Period for data: 1d, 7d, 30d, 1w, 1m |
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 data: 1d, 7d, 30d, 1w, 1m",
"type": "string"
}
},
"type": "object"
}