Skip to content

Configuration

Michal Zaniewicz edited this page Jul 14, 2026 · 2 revisions

Setting up the integration after Installation: logging in, the two poll intervals, reauth, and how your credentials are handled.

Add the integration

  1. Settings → Devices & Services → Add Integration.
  2. Search "Suunto App (unofficial)".
  3. Enter the email and password of your Suunto app account.
  4. Submit. On success you get one device named after your Suunto account (your username/handle), with all sensors, the statistics and the workouts calendar attached.

The integration logs in once, exchanges your password for a session token, and stores only the email + token. See Credential model below.

Login errors

Message Cause
"Login was rejected..." Wrong email/password, or account 2FA blocking the call.
"Could not reach the Suunto/Sports Tracker servers." Network/DNS issue or the backend is down.
"This Suunto account is already configured." You already added this account (it is de-duplicated by your user key).

Options - poll intervals

Press Configure on the integration to set two independent refresh cadences. They are split deliberately: live values should be fresh, but re-fetching ~90 days of history every few minutes would be wasteful (and hard on an unofficial API).

Option Default Min Max Feeds
Live data interval 15 min 5 120 Current heart rate, daily steps, daily energy (the fast coordinator).
History interval 60 min 15 1440 Sleep, recovery, workouts, training load, baselines, and the hourly long-term statistics (the daily coordinator).

Keep the History interval modest. Hourly is plenty - the statistics backfill means a late watch sync is still captured retroactively, so a faster poll buys you almost nothing while hammering a private API. See Architecture for why there are two coordinators.


Reauthentication

If the stored session token is ever invalidated by the server, the coordinator raises an auth failure and HA shows "Reauthentication required" on the integration. Click it and enter your password again - a fresh session token is obtained and stored. The password is still not kept between times.

There is no silent re-login with a stored password by design (there is no stored password). This means: a revoked/expired session always surfaces as an explicit reauth prompt.


Credential model (how your password is handled)

  • Your password is used once - at setup, and again only if you go through reauth.
  • It is immediately exchanged for a session token and then discarded. It is never written to disk.
  • HA's .storage holds only your email and the revocable session token.
  • Rationale: a revocable token is safer to persist than a reusable password. (HA .storage is plaintext - a HA limitation; a token limits the blast radius.)

"New login" emails

Suunto sends a new login notification email on every login call. To minimise these, the integration caches the session token and reuses it across restarts - during normal data fetching it does not log in and does not trigger emails. You should only see a login email on first setup and on reauth.

More detail in Privacy & Disclaimer.

Clone this wiki locally