Python 3 API wrapper for Garmin Connect
Project description
Python: Garmin Connect
Note: Garmin has made significant changes to their authentication and API infrastructure. The old
garth-based OAuth/cookie login no longer works. This library now authenticates using the same mobile SSO flow as the official Garmin Connect Android app, obtaining native DI OAuth Bearer tokens. Saved tokens are stored in a new format (garmin_tokens.json) — a fresh login is required after upgrading. All existing API methods remain unchanged — no code changes needed on your end, except when you store/handle tokens in your own project.
The Garmin Connect API library comes with two examples:
example.py- Simple getting-started example showing authentication, token storage, and basic API callsdemo.py- Comprehensive demo providing access to 130+ API methods organized into 13 categories for easy navigation
$ ./demo.py
🏃♂️ Full-blown Garmin Connect API Demo - Main Menu
==================================================
Select a category:
[1] 👤 User & Profile
[2] 📊 Daily Health & Activity
[3] 🔬 Advanced Health Metrics
[4] 📈 Historical Data & Trends
[5] 🏃 Activities & Workouts
[6] ⚖️ Body Composition & Weight
[7] 🏆 Goals & Achievements
[8] ⌚ Device & Technical
[9] 🎽 Gear & Equipment
[0] 💧 Hydration & Wellness
[a] 🔧 System & Export
[b] 📅 Training plans
[c] ⛳ Golf
[q] Exit program
Make your selection:
API Coverage Statistics
- Total API Methods: 130+ unique endpoints (snapshot)
- Categories: 13 organized sections
- User & Profile: 4 methods (basic user info, settings)
- Daily Health & Activity: 9 methods (today's health data)
- Advanced Health Metrics: 12 methods (fitness metrics, HRV, VO2, training readiness, running tolerance)
- Historical Data & Trends: 9 methods (date range queries, weekly aggregates)
- Activities & Workouts: 35 methods (comprehensive activity, workout management, typed workout uploads, scheduling, import)
- Body Composition & Weight: 8 methods (weight tracking, body composition)
- Goals & Achievements: 15 methods (challenges, badges, goals)
- Device & Technical: 7 methods (device info, settings)
- Gear & Equipment: 7 methods (gear management, tracking)
- Hydration & Wellness: 12 methods (hydration, nutrition, blood pressure, menstrual)
- System & Export: 4 methods (reporting, logout, GraphQL)
- Training Plans: 2 methods
- Golf: 3 methods (scorecard summary, scorecard detail, shot data)
Interactive Features
- Enhanced User Experience: Categorized navigation with emoji indicators
- Smart Data Management: Interactive weigh-in deletion with search capabilities
- Comprehensive Coverage: All major Garmin Connect features are accessible
- Error Handling: Robust error handling with user-friendly prompts
- Data Export: JSON export functionality for all data types
A comprehensive Python3 API wrapper for Garmin Connect, providing access to health, fitness, and device data.
📖 About
This library enables developers to programmatically access Garmin Connect data including:
- Health Metrics: Heart rate, sleep, stress, body composition, SpO2, HRV
- Activity Data: Workouts, typed workout uploads (running, cycling, swimming, walking, hiking), workout scheduling, exercises, training status, performance metrics, import-style uploads (no Strava re-export)
- Nutrition: Daily food logs, meals, and nutrition settings
- Golf: Scorecard summaries, scorecard details, shot-by-shot data
- Device Information: Connected devices, settings, alarms, solar data
- Goals & Achievements: Personal records, badges, challenges, race predictions
- Historical Data: Trends, progress tracking, date range queries
Compatible with all Garmin Connect accounts. See https://connect.garmin.com/
📦 Installation
Install from PyPI:
pip install --upgrade garminconnect curl_cffi
Run demo software (recommended)
python3 -m venv .venv --copies
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install pdm
pdm install --group :example
# Run the simple example
python3 ./example.py
# Run the comprehensive demo
python3 ./demo.py
🛠️ Development
Set up a development environment for contributing:
Note: This project uses PDM for modern Python dependency management and task automation. All development tasks are configured as PDM scripts in
pyproject.toml. The Python interpreter is automatically configured to use.venv/bin/pythonwhen you create the virtual environment.
Environment Setup:
⚠️ Important: On externally-managed Python environments (like Debian/Ubuntu), you must create a virtual environment before installing PDM to avoid system package conflicts.
# 1. Create and activate a virtual environment
python3 -m venv .venv --copies
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# 2. Install PDM (Python Dependency Manager)
pip install pdm
# 3. Install all development dependencies
pdm install --group :all
# 4. Install optional tools for enhanced development experience
pip install "black[jupyter]" codespell pre-commit
# 5. Setup pre-commit hooks (optional)
pre-commit install --install-hooks
Alternative for System-wide PDM Installation:
# Install PDM via pipx (recommended for system-wide tools)
python3 -m pip install --user pipx
pipx install pdm
# Then proceed with project setup
pdm install --group :all
Available Development Commands:
pdm run format # Auto-format code (isort, black, ruff --fix)
pdm run lint # Check code quality (isort, ruff, black, mypy)
pdm run codespell # Check spelling errors (install codespell if needed)
pdm run test # Run test suite
pdm run testcov # Run tests with coverage report
pdm run all # Run all checks
pdm run clean # Clean build artifacts and cache files
pdm run build # Build package for distribution
pdm run publish # Build and publish to PyPI
View all available commands:
pdm run --list # Display all available PDM scripts
Code Quality Workflow:
# Before making changes
pdm run lint # Check current code quality
# After making changes
pdm run format # Auto-format your code
pdm run lint # Verify code quality
pdm run codespell # Check spelling
pdm run test # Run tests to ensure nothing broke
Run these commands before submitting PRs to ensure code quality standards.
🔐 Authentication
Authentication uses the same mobile SSO flow as the official Garmin Connect Android app. No browser is needed.
How it works:
- First login: Authenticates via
sso.garmin.com/mobile/api/loginusing the Android app's client ID. If MFA is required, a callback (prompt_mfa) prompts for the one-time code. - Token exchange: The service ticket is exchanged for DI OAuth Bearer tokens
(
access_token+refresh_token) viadiauth.garmin.com. Tokens are stored at~/.garminconnect/garmin_tokens.json. - Auto-refresh: Before each API request the library checks whether the DI token is about to expire and refreshes it automatically — no user interaction required.
Session lifetime:
- DI tokens auto-refresh indefinitely as long as the refresh token remains valid.
- A full re-login with credentials (and possibly MFA) is only needed if the refresh token itself expires or is revoked.
Token storage:
~/.garminconnect/garmin_tokens.json # saved automatically, mode 0600
🧪 Testing
Prerequisites:
Run example.py once to create saved tokens in ~/.garminconnect.
# Install development dependencies
pdm install --group :all
Run Tests:
pdm run test # Run all tests
pdm run testcov # Run tests with coverage report
Optional: keep test tokens isolated
export GARMINTOKENS="$(mktemp -d)"
python3 ./example.py # create a fresh token file for tests
pdm run test
Note: Tests use VCR cassettes to record/replay API responses. If tests fail with
authentication errors, ensure valid tokens exist in ~/.garminconnect (run
example.py first).
📦 Publishing
For package maintainers:
Setup PyPI credentials:
pip install twine
# Edit with your preferred editor, or create via here-doc:
# cat > ~/.pypirc <<'EOF'
# [pypi]
# username = __token__
# password = <PyPI_API_TOKEN>
# EOF
[pypi]
username = __token__
password = <PyPI_API_TOKEN>
Recommended: use environment variables and restrict file perms
chmod 600 ~/.pypirc
export TWINE_USERNAME="__token__"
export TWINE_PASSWORD="<PyPI_API_TOKEN>"
Publish new version:
pdm run publish # Build and publish to PyPI
Alternative publishing steps:
pdm run build # Build package only
pdm publish # Publish pre-built package
🤝 Contributing
We welcome contributions! Here's how you can help:
- Report Issues: Bug reports and feature requests via GitHub issues
- Submit PRs: Code improvements, new features, documentation updates
- Testing: Help test new features and report compatibility issues
- Documentation: Improve examples, add use cases, fix typos
Before Contributing:
- Set up development environment (
pdm install --group :all) - Execute code quality checks (
pdm run format && pdm run lint) - Test your changes (
pdm run test) - Follow existing code style and patterns
Development Workflow:
# 1. Setup environment (with virtual environment)
python3 -m venv .venv --copies
source .venv/bin/activate
pip install pdm
pdm install --group :all
# 2. Make your changes
# ... edit code ...
# 3. Quality checks
pdm run format # Auto-format code
pdm run lint # Check code quality
pdm run test # Run tests
# 4. Submit PR
git commit -m "Your changes"
git push origin your-branch
Jupyter Notebook
Explore the API interactively with our reference notebook.
Python Code Examples
import os
from datetime import date
from garminconnect import Garmin
# First run: logs in and saves tokens to ~/.garminconnect
# Subsequent runs: loads saved tokens and auto-refreshes
client = Garmin(
os.getenv("EMAIL"),
os.getenv("PASSWORD"),
prompt_mfa=lambda: input("MFA code: "),
)
client.login("~/.garminconnect")
# Get today's stats
today = date.today().isoformat()
stats = client.get_stats(today)
# Get heart rate data
hr_data = client.get_heart_rates(today)
print(f"Resting HR: {hr_data.get('restingHeartRate', 'n/a')}")
Typed Workouts (Pydantic Models)
The library includes optional typed workout models for creating type-safe workout definitions:
pip install garminconnect[workout]
from garminconnect.workout import (
RunningWorkout, WorkoutSegment,
create_warmup_step, create_interval_step, create_cooldown_step,
create_repeat_group,
)
# Create a structured running workout
workout = RunningWorkout(
workoutName="Easy Run",
estimatedDurationInSecs=1800,
workoutSegments=[
WorkoutSegment(
segmentOrder=1,
sportType={"sportTypeId": 1, "sportTypeKey": "running"},
workoutSteps=[create_warmup_step(300.0)]
)
]
)
# Upload and optionally schedule it
result = client.upload_running_workout(workout)
client.schedule_workout(result["workoutId"], "2026-03-20")
# Delete a workout or remove it from the calendar
client.delete_workout(workout_id)
client.unschedule_workout(scheduled_workout_id)
Available workout classes: RunningWorkout, CyclingWorkout, SwimmingWorkout, WalkingWorkout, HikingWorkout, MultiSportWorkout, FitnessEquipmentWorkout
Helper functions: create_warmup_step, create_interval_step, create_recovery_step, create_cooldown_step, create_repeat_group
Additional Resources
- Simple Example: example.py - Getting started guide
- Comprehensive Demo: demo.py - All 130+ API methods
- API Documentation: Comprehensive method documentation in source code
- Test Cases: Real-world usage examples in
tests/directory
🙏 Acknowledgments
Special thanks to all contributors who have helped improve this project:
- Community Contributors: Bug reports, feature requests, and code improvements
- Issue Reporters: Helping identify and resolve compatibility issues
- Feature Developers: Adding new API endpoints and functionality
- Documentation Authors: Improving examples and user guides
This project thrives thanks to community involvement and feedback.
💖 Support This Project
If you find this library useful for your projects, please consider supporting its continued development and maintenance:
🌟 Ways to Support
- ⭐ Star this repository - Help others discover the project
- 💰 Financial Support - Contribute to development and hosting costs
- 🐛 Report Issues - Help improve stability and compatibility
- 📖 Spread the Word - Share with other developers
💳 Financial Support Options
Why Support?
- Keeps the project actively maintained
- Enables faster bug fixes and new features
- Supports infrastructure costs (testing, AI, CI/CD)
- Shows appreciation for hundreds of hours of development
Every contribution, no matter the size, makes a difference and is greatly appreciated! 🙏
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file garminconnect-0.3.0.tar.gz.
File metadata
- Download URL: garminconnect-0.3.0.tar.gz
- Upload date:
- Size: 49.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.26.1 CPython/3.13.5 Linux/6.12.57+deb13-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9055000eedd400df00f2b48fb851e7910654deba4cba0227018e0e8480932e15
|
|
| MD5 |
d67b1e7b4af61bf12a3e89332a315f93
|
|
| BLAKE2b-256 |
bb78b533225d4eb2f60a07f70bc96dcb8c49eccb708de8256cc7845291f609a6
|
File details
Details for the file garminconnect-0.3.0-py3-none-any.whl.
File metadata
- Download URL: garminconnect-0.3.0-py3-none-any.whl
- Upload date:
- Size: 44.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.26.1 CPython/3.13.5 Linux/6.12.57+deb13-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af9c4f142c2fd3509fadc6d309e82a71be48b7a6d5964e8d94f857ed09a0e0c2
|
|
| MD5 |
bb74f7c8179409e62c72541864c94efa
|
|
| BLAKE2b-256 |
7be4c4b417cef13d195eb9ac52627a10fe840949830ebcd33244d94f59c7eec1
|