read scope. Every response is JSON and every date parameter follows the YYYY-MM-DD format.
Dates default to today in UTC. If you know the user’s timezone, always pass an explicit date when calling near midnight — otherwise you may silently query the wrong calendar day.
GET /v1 — Route list
Returns the full list of routes available to your key, filtered by its scopes. This is the fastest way to confirm which endpoints your key can actually reach without consulting this page. Example requestGET /v1/me — Key scopes and budget
Returns the scopes attached to the current key and its hourly rate-limit budget. Use this to verify a key is alive and to check what it is allowed to do before making other calls. Example requeststring[]
The permission scopes granted to this key. Values are
"read" and/or "write".number
Maximum read requests allowed per fixed hour window for this key.
number
Maximum write requests allowed per fixed hour window for this key.
GET /v1/goals — Calorie and macro targets
Returns your configured nutrition targets, daily water goal, preferred weight unit, and stated training goal. These values are set inside the app and are read-only through the API. Example requestnumber
Daily calorie target in kcal.
number
Daily protein target in grams.
number
Daily carbohydrate target in grams.
number
Daily fat target in grams.
number
Daily water target in millilitres.
string
Preferred unit for displaying body weight (
"kg" or "lbs").string
Your stated training goal as set in the app (for example
"build_muscle" or "lose_weight").GET /v1/insights — Progression verdicts and monthly summaries
Returns computed analysis across your log history: per-lift progression verdicts, recovery status compared to your baseline, and up to six monthly summaries. You can anchor all analysis windows to a specific date with the optional?date= query parameter.
Query parameters
string
YYYY-MM-DD date to anchor the analysis windows. Defaults to today in UTC.object[]
Array of per-lift progression verdicts. Each entry contains the exercise name, a verdict string, and a human-readable trend description.
object
Your current recovery status compared to your personal baseline, including days since your last rest day.
object[]
Up to six months of historical summaries, each containing workout count, average daily calories, and average body weight.
GET /v1/days/ — Everything logged on one date
Returns the complete nutrition log, water intake, workout sessions, and body measurements recorded on a single calendar day. The{date} path parameter must be in YYYY-MM-DD format and defaults to today in UTC when omitted.
Path parameters
string
The calendar date to retrieve in
YYYY-MM-DD format. Defaults to today in UTC.string
The calendar date this record covers, in
YYYY-MM-DD format.object
Aggregated macro totals for the day plus the individual food log entries.
number
Total water logged for the day in millilitres.
object[]
Workout sessions logged on this date, including exercises and sets.
object
Body measurements recorded on this date, including
weightKg if a weigh-in was logged.GET /v1/days — Per-day totals over a date range
Returns daily nutrition, water, and measurement totals for every calendar day between?start= and ?end= (inclusive). Both parameters are required. This is more efficient than calling GET /v1/days/{date} repeatedly — the entire range counts as one budget unit.
Query parameters
string
required
Start date in
YYYY-MM-DD format. Inclusive.string
required
End date in
YYYY-MM-DD format. Inclusive.string
The calendar date for this summary row in
YYYY-MM-DD format.number
Total calories logged on this date.
number
Total protein logged on this date in grams.
number
Total carbohydrates logged on this date in grams.
number
Total fat logged on this date in grams.
number
Total water logged on this date in millilitres.
number | null
Body weight recorded on this date in kilograms, or
null if no weigh-in was logged.GET /v1/workouts — Recent workout sessions
Returns your most recent workout sessions, sorted newest first. Use the optional?limit= parameter to control how many sessions are returned, up to a maximum of 50.
Query parameters
number
Maximum number of sessions to return. Accepts values from
1 to 50. Defaults to the server’s built-in default when omitted.string
Unique identifier for the workout session.
string
Calendar date the session was logged on, in
YYYY-MM-DD format.number
Session duration in minutes, if recorded.
object[]
Array of exercises performed, each containing a name and an array of sets with
reps and optional weightKg.GET /v1/measurements — Recent weigh-ins and measurements
Returns your most recent body measurements and weigh-ins, sorted newest first. Use the optional?limit= parameter to control how many records are returned, up to a maximum of 100.
Query parameters
number
Maximum number of measurement records to return. Accepts values from
1 to 100. Defaults to the server’s built-in default when omitted.string
The date the measurement was recorded, in
YYYY-MM-DD format.number
Body weight recorded on this date in kilograms.