Garmin Unofficial API
This is me capturing some notes as I try to figure out out to replace my Fitbit Versa with a Garmin Vivoactive 5. Garmin does not offer an API for personal use, but that doesnโt stop a user from using the same API calls that the website uses.
Please Garmin, please make your API accessible to the public so we donโt have to do this nonsense in the future.
General Notesโ
- The
DI-Backend
header seems to be required for some of the endpoints (theUPLOAD
endpoint in particular). Without that you get a 404 Not Found. Iโve always putapiconnect.garmin.com
here and itโs worked for me. Maybe a regional marker? - The JWT access token on its own isnโt enough for bearer token authentication.
You seem to also need to specify the
JWT_FGP
cookie as well, which is provided when you first get your tokens as the
Refresh Tokensโ
Send a POST request to https://connect.garmin.com/services/auth/token/refresh
- Provide the
JWT_FGP
cookie, i.e.Cookie: JWT_FGP=b83ff82f-32a9-4f8f-8192-14ce8cac386e
- Provide a JSON body with the refresh token:
{ "refresh_token": "refresh-token" }
This should give you a new access and refresh token, as well as a new JWT_FGP
cookie. Youโll need all of these to be able to refresh the token next time.
Data APIsโ
Daily Summaryโ
GET https://connect.garmin.com/usersummary-service/usersummary/daily/<guid>?calendarDate=<date>
URL values:
guid
(GUID, required): Your profile GUID. This can be foundby going to the View Profile on the website and grabbing the last segment of the URL.calendarDate
(date in YYYY-MM-DD format, required): date to retrieve the summary for
Hydrationโ
Log Waterโ
PUT https://connect.garmin.com/usersummary-service/usersummary/hydration/log
Header values:
Authorization: Bearer <access-token>
Cookie: JWT_FGP=<fgp-token>
DI-Backend: connectapi.garmin.com
Body is JSON with the following values:
userProfileId
(number, optional): unknown use. Can be retrieved from the UPLOAD endpoint. Iโm not sure why youโd need to ever provide this.valueInML
(number, required): amount of water consumed in MLcalendarDate
(date in YYYY-MM-DD format, required): date that the water was consumedtimestampLocal
(timestamp in ISO8601 format, required): seems like the same as above
Response contains a result like this:
{
"userId": 1337,
"calendarDate": "2024-04-13",
"valueInML": 1700.0,
"goalInML": 2988.0,
"dailyAverageinML": null,
"lastEntryTimestampLocal": "2024-04-13T12:37:25.679",
"sweatLossInML": 188.0,
"activityIntakeInML": 0.0
}
Other Projectsโ
- matin/garth is an unofficial API in Python for retrieving data, but doesnโt seem to support the writing of data