Skip to main content
In partner API responses, scored wellbeing areas are called outcomes (outcomeId, outcomes[]). In Health Yourself product language the same concepts are often called assessments — this page uses both terms where helpful.

What wellbeing means

Wellbeing describes how supportive a subject’s submitted profile is for day-to-day functioning and comfort over roughly the next 10 years. It focuses on everyday capacity: steady energy, comfort during activity, clear thinking for daily tasks, and normal recovery after typical effort. Wellbeing is forward-looking, practical, changeable over time, separate from disease diagnosis, and informational — not a diagnosis or treatment recommendation.

Wellbeing outcome ids

Request these in options.requestedOutcomes on submission. The same ids appear on GET /v1/results/{resultId}.
outcomeIdFocus area
wellbeing.cardiovascularHeart and circulation
wellbeing.cognitiveBrain — clarity, attention, memory for daily tasks
wellbeing.renalKidneys — fluid balance and related energy patterns
wellbeing.respiratoryLungs — breathing comfort during daily activity
Synonyms such as wellbeing.kidney or renal.wellbeing normalize to wellbeing.renal.

Requesting outcomes on submit

"options": {
  "requestedOutputs": ["inference_score_v1", "json", "html"],
  "requestedOutcomes": [
    "wellbeing.cardiovascular",
    "wellbeing.cognitive",
    "wellbeing.renal",
    "wellbeing.respiratory"
  ]
}
requestedOutputs is required and controls pipeline artefacts (scores, JSON report, HTML report, PDF).

Outcome fields in GET /v1/results

Each outcome summary uses partner-safe vocabulary only (no model codes or internal warning ids).
FieldDescription
outcomeIdPublic id, e.g. wellbeing.cardiovascular
focusHuman-readable title, e.g. “Cardiovascular Wellbeing”
scoreScalar 0–1 (higher = more supportive vs reference threshold)
referencePlacementbelow_reference, above_reference, or indeterminate
referencePlacementLabelDisplay string for placement
outcomeStatuscompleted, failed, or partial
outcomeStatusLabelHuman-readable status
bandOptional { tier, label }tier is low, medium, high, or unknown
notices[]Optional { message } lines — partner-safe only
Example single outcome:
{
  "outcomeId": "wellbeing.cardiovascular",
  "focus": "Cardiovascular Wellbeing",
  "score": 0.72,
  "referencePlacement": "above_reference",
  "referencePlacementLabel": "Above reference threshold",
  "outcomeStatus": "completed",
  "outcomeStatusLabel": "Completed",
  "band": {
    "tier": "high",
    "label": "Upper third · reference cohort"
  },
  "notices": []
}
When multiple areas were requested, the response may include outcomes[] (array) in addition to outcome (primary / first).
Older integration drafts described assessments[] with 0–100 scores.globalPopulation fields. The live partner API uses outcomes[], a single score in 0–1, and band.tier instead of group: optimal | suboptimal.

Marker contributions and reports

Detailed per-marker explanations and reference-range display appear in generated HTML/JSON report artefacts (when requested in options.requestedOutputs), not as a separate structured contribution array on GET /v1/results. The structured GET response is intentionally minimal: correlation ids, outcome summaries, notices, and signed artifact URLs.

Artifacts

When json, html, or pdf is in requestedOutputs, artifacts.items[] may include:
FieldDescription
typejson, html, pdf, or unknown
availabilityavailable, pending, or unavailable
access.downloadUrlTime-limited signed HTTPS URL when available
access.expiresAtURL expiry (ISO-8601)
See Get result for a full response example.