get_glucose_readings
Retrieve glucose readings with timestamps and sources for diabetes management and health monitoring within specified date ranges.
Instructions
Get glucose/blood sugar readings for a user within a date range. Returns glucose values in mg/dL with timestamps and sources.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | No | End date in ISO 8601 format (e.g., 2025-10-22T23:59:59Z). Optional. | |
limit | No | Maximum number of readings to return (default: 1000) | |
startDate | No | Start date in ISO 8601 format (e.g., 2025-10-01T00:00:00Z). Optional. | |
userId | No | User identifier. Defaults to user_12345abcdef67890 if not specified. |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "End date in ISO 8601 format (e.g., 2025-10-22T23:59:59Z). Optional.",
"type": "string"
},
"limit": {
"description": "Maximum number of readings to return (default: 1000)",
"type": "number"
},
"startDate": {
"description": "Start date in ISO 8601 format (e.g., 2025-10-01T00:00:00Z). Optional.",
"type": "string"
},
"userId": {
"description": "User identifier. Defaults to user_12345abcdef67890 if not specified.",
"type": "string"
}
},
"required": [],
"type": "object"
}