--- name: terra-unified-api description: Best practices for integrating Terra API – the unified health & fitness data API for 500+ wearables (Garmin, Fitbit, Oura, Whoop, Apple Health, Strava, Dexcom). Use when building with Terra API or tryterra.co, handling terra-signature (X-Terra-Signature) webhooks, storing wearable health data (activity, sleep, daily, body, nutrition, menstruation, hormone), managing device connections, or merging data across multiple devices. license: MIT compatibility: Requires network access to docs.tryterra.co for full API schemas metadata: author: terra version: "1.0.0" --- # Terra API Best Practices Production-tested guidelines for building with Terra API. Contains rules across 5 categories, prioritized by impact, distilled from a real multi-device integration. ## Start from an example app For a new app, prefer the published example for wearable connections, webhook ingestion, and a health dashboard, then adapt it to the user's requirements. Install the CLI if missing, discover the current catalog, and clone the closest fit: ```sh npm install -g @tryterra/cli terra examples list --select name,title,description terra examples clone unified-api-web-app my-app ``` Listing and cloning need no login or selected environment. The destination must not exist and its parent must exist. Read the downloaded README and AGENTS.md and follow `next_steps` to install dependencies, configure, and run it before building on it. Cloning only downloads files. For an existing app, use the example as a reference and adapt the relevant pieces in place. ## From the terminal Account configuration lives in the [Terra dashboard](https://dashboard.tryterra.co), which an agent cannot click. The `terra` CLI does the same from a terminal, and for the rules below it is how you check your work against what Terra API actually did rather than what you expected: ```sh terra unified-api destinations list --env # where webhooks go, and whether they are active terra events list --env --outcome failed # deliveries your endpoint rejected terra events retrieve-payload --env # the exact body that was sent terra users list --env --reference-id # connection state, one row per provider terra unified-api data scopes list --env # which fields a payload will carry ``` Two of these change how you test. `terra events retrieve-payload` is the ground truth for "the payload was missing a field": absent there, the cause is the environment's data scopes rather than your handler. And `terra events resend --event-id --event-type sleep --user-id ` replays a real stored event at your endpoint, so a handler can be exercised against real payloads with no device and no waiting for a provider to sync. The signing secret these rules verify against is returned by `terra unified-api destinations create ...`, once, at creation. Install it with `brew install tryterra/tap/terra` on macOS or `npm install -g @tryterra/cli` elsewhere. The `terra-cli` skill carries the guardrails (`--yes` on destructive commands and careful handling of credential output), the exit codes, and a playbook per task. It administers the integration; it does not replace the API calls this skill describes. ## When to Apply Reference these guidelines when: - Implementing or reviewing a Terra API webhook endpoint - Designing storage for wearable health data (activity, sleep, daily, body, nutrition, menstruation, hormone, athlete) - Building device connection flows (auth, deauth, reauth, scopes) - Handling data from users with multiple connected devices - Writing tests for a Terra API integration ## Rule Categories by Priority | Priority | Category | Impact | Prefix | | -------- | --------------------------- | ---------- | ----------- | | 1 | Webhook Handling | CRITICAL | `webhooks-` | | 2 | Data Handling & Idempotency | CRITICAL | `data-` | | 3 | Auth & Connection Lifecycle | HIGH | `auth-` | | 4 | Multi-Device Data | MEDIUM | `devices-` | | 5 | Testing | LOW-MEDIUM | `testing-` | ## Quick Reference ### 1. Webhook Handling (CRITICAL) - `webhooks-verify-raw-body` - Verify the signature header HMAC (terra-signature / X-Terra-Signature, read case-insensitively) over the raw unaltered body before parsing JSON - `webhooks-ack-within-timeout` - Return 200 within the timeout (8s default), process async - `webhooks-dedupe-terra-reference` - Deduplicate deliveries on X-Terra-Trace-Id; terra-reference is shared by all chunks of a large request - `webhooks-archive-raw-payloads` - Archive raw payloads to object storage, link rows via a payload key - `webhooks-handle-informational-events` - Route non-data events explicitly, unwrap s3_payload deliveries, never crash on unknown types ### 2. Data Handling & Idempotency (CRITICAL) - `data-natural-keys` - Key activity/sleep by summary_id, daily-type data by (connection, date), hormone by timestamp - `data-date-part-only` - Slice the date from the ISO string before any timezone conversion - `data-superset-overwrite` - Standard fields follow the superset guarantee; overwrite when X-Terra-Ordering-Timestamp is newer or equal - `data-coalesce-enrichment-scores` - Enrichment scores break the superset guarantee, COALESCE so nulls never overwrite - `data-columns-over-blobs` - Extract metrics into typed columns, keep raw payloads in object storage - `data-timestamp-localization` - Respect the timestamp_localization flag, pick one storage policy deliberately ### 3. Auth & Connection Lifecycle (HIGH) - `auth-reference-id` - Pass your user ID as reference_id, it is the join key in every webhook - `auth-handle-all-events` - Handle all seven auth event types with idempotent upserts - `auth-reauth-id-swap` - user_reauth issues a new Terra user ID, swap old for new - `auth-parse-scopes` - Parse comma-separated scope strings; apply scopes_added/scopes_removed on permission_change - `auth-reconcile-connections` - Reconcile against Terra API state on page mount, auth redirect, and a schedule - `auth-integrations-endpoint-headers` - Send dev-id to the public integrations catalogue; without it you get every provider, not your enabled set ### 4. Multi-Device Data (MEDIUM) - `devices-expect-cross-device-duplicates` - The same session arrives once per device with different summary_ids; your app owns the merge policy - `devices-enrichment-provider-agnostic` - Enrichment scores are provider-agnostic and comparable, but only present when score weightings are active ### 5. Testing (LOW-MEDIUM) - `testing-mock-boundaries` - Mock the SDK, database, and background tasks; make async processing eager - `testing-cover-event-edge-cases` - Test replays, empty data arrays, unknown users, type 0, enrichment nulls, reauth swaps ## How to Use Read the individual rule file in `rules/` when working on that area, e.g. read `rules/webhooks-verify-raw-body.md` and its siblings before writing a webhook endpoint. Each rule has incorrect/correct code examples and links to the relevant [docs.tryterra.co](https://docs.tryterra.co) page (append `.md` to any docs URL for a markdown version). If the terra-docs MCP server (`https://docs.tryterra.co/~gitbook/mcp`) is connected, use its tools to search and fetch those pages instead. ## Related Terra API Surfaces This skill covers the core Unified API integration. Terra API also offers mobile SDKs for on-device sources (Apple Health, Samsung Health, Health Connect), a realtime Streaming API over websockets, an MCP server exposing health-data query tools to AI agents, planned workouts and routes (write-to-device products), and lab reports. See [docs.tryterra.co](https://docs.tryterra.co) for those surfaces.