Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Garmin Connect Weight

Cookie

Get Weight

https://connect.garmin.com/modern/proxy/userprofile-service/userprofile/personal-information/weightWithOutbound/filterByDay?from=1477526400000&until=1509148800000&_=1511026934431

fetch('https://connect.garmin.com/modern/proxy/userprofile-service/userprofile/personal-information/weightWithOutbound/filterByDay?from=1477526400000&until=1509148800000&_=1511026934431').then((result) => {console.log(result)})

Post Weight

https://connect.garmin.com/modern/proxy/weight-service/user-weight

{"value":74,"unitKey":"kg","date":"2017-11-18"}

fetch("https://connect.garmin.com/modern/proxy/weight-service/user-weight", {
  method: "post",
  headers: {
    'Accept': 'application/json',
    'Content-Type': 'application/json',
    'credentials': 'same-origin'    
  },

  //make sure to serialize your JSON body
  body: JSON.stringify({
    value: "88",
    unitKey: "kg",
    date: "2017-11-18"
  })
})
.then( (response) => { 
   console.log(response)
});

Delete Weight

ttps://connect.garmin.com/modern/proxy/biometric-service/biometric/2017-11-18

@vanlooverenkoen
Copy link

Is there a way to add your bodyfat percentage & other measurements you get from a smart scale?

@LsVzqz
Copy link

LsVzqz commented Jun 22, 2022

Is there a way to add your bodyfat percentage & other measurements you get from a smart scale?

I'm actually curious to know this too. I have data that I get from a withings scale and would like to enter it into my Garmin account.

@pedrorijo91
Copy link

pedrorijo91 commented Mar 1, 2023

there should be a way. this paid service is able to do that... https://smartscalesync.com/
I've been using it for a withings scale cc @LsVzqz

@lchagnoleau
Copy link

No way to do it with an opensource project ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment