get_weight
Retrieve raw weight data from Fitbit for a specified period ending today using a 'period' parameter like '1d', '7d', or '1y'. Ideal for integrating weight trends into health applications.
Instructions
Get the raw JSON response for weight entries from Fitbit for a specified period ending today. Requires a 'period' parameter such as '1d', '7d', '30d', '3m', '6m', '1y'
Input Schema
Name | Required | Description | Default |
---|---|---|---|
period | Yes | The time period for which to retrieve weight data. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"period": {
"description": "The time period for which to retrieve weight data.",
"enum": [
"1d",
"7d",
"30d",
"3m",
"6m",
"1y"
],
"type": "string"
}
},
"required": [
"period"
],
"type": "object"
}