HonedlyAPI

Build on your clients’ training data.

OAuth-secured, consent-scoped access to the data your clients already log in Honedly — meals, workouts, progress — plus AI endpoints. Available to partner orgs on plans with API access.

Open the API referenceBecome a partner

OAuth 2.0 via the Honedly IdP

Standard authorization-code flow against sso.honedly.com. Users consent per scope; you get a verifiable token.

Scoped by design

read:meals · read:workouts · read:progress · ai:write

Typed, documented, testable

A full OpenAPI document at /api/openapi.json and an interactive try-it console in the reference.

# 1. Your org registers an OAuth client on the partner portal
#    (partners.honedly.com -> your org -> API)

# 2. Exchange the authorization code for tokens at the IdP
curl -X POST https://sso.honedly.com/api/auth/oauth2/token \
  -d grant_type=authorization_code \
  -d code=... -d client_id=... -d client_secret=...

# 3. Call the API with the id_token
curl https://api.honedly.com/api/v1/me \
  -H "Authorization: Bearer <token>"