This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Cannot export Wellness Data

How to export Wellness Data (fit file) from the Garmin Connect web app? Exporting Activities works fine, but downloading the fit file with 24 h heart rate and stress data is not possible.

If I follow the instructions from the website

To export an activity or wellness data file in Garmin Connect:

  1. Sign in to your Garmin Connect account
  2. Click Arrow Iconin the upper left corner to expand the Navigation Bar (if it not already expanded)
  3. Click Activities
  4. Click All Activities(Steps for Wellness Data)
  5. Select the Activity you would like to export
  6. Click the (Gear) in the top right corner
  7. Select the format you would like*
  8. Save the file

Then at step 6, when I click the Gear, I only have the option ‘Customize Layout’ and no other option (i.e. no ‘export original’ option).

Can someone help me out?

Thanks

  • This option is hidden starting from November 2023.

    Check here: Download Daily Summary not possible for possible workarounds.

  • Thanks! Hope I can get it working

  • This works great, thanks BunBun!

    Actually the link is still working, it's only hidden.

    Simply replace part of the display link to download-service.

    Here is a script for that:

    fetch(window.location.href.replace('modern/daily-summary','download-service/files/wellness'),
    {'headers':{
    'DI-Backend':'connectapi.garmin.com',
    'Authorization':'Bearer '+JSON.parse(localStorage.token).access_token
    }}).then((r)=>r.blob()).then((b)=>{
    f=document.createElement('a');
    f.href=window.URL.createObjectURL(b);
    f.download=window.location.href.split('/').pop();
    f.click();
    })

    Create a bookmark, as an address enter javascript: and just after the colon paste the script.
    Then you can run it by clicking on a daily summary page.

    Of course the link may be removed anytime, so it's a temporary workaround.