Thrive AI Health
Api reference

Consolidated health-profile view

Recommended one-call resource for hydrating a member dashboard. Wraps profile attributes, optional coarse location, privacy preferences, and connected-device summaries. Each block is also reachable independently via its per-resource endpoint (`/users/{user_id}`, `/users/{user_id}/privacy-settings`, `/users/{user_id}/devices`) when only a slice is needed.

GET
/v1/users/{user_id}/health-profile

Authorization

MemberBearer
AuthorizationBearer <token>

Member-scoped JWT minted by POST /v1/auth/token. Required on every /v1/users/{user_id}/... route; the token's sub claim must match the path user_id.

In: header

Path Parameters

user_id*User Id
Formatuuid

Header Parameters

org-id?string|null
x-user-id?string|null
x-request-id?string|null
traceparent?string|null
Idempotency-Key?|null

Response Body

application/json

application/json

curl -X GET "https://loading/v1/users/497f6eca-6276-4993-bfeb-53cbbbba6f08/health-profile"
{
  "data": {
    "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
    "profile": {},
    "location": {
      "city": "string",
      "state": "string",
      "country": "string"
    },
    "privacy": {
      "conversation_recording_opt_in": true
    },
    "connected_devices": [
      {
        "provider_slug": "string",
        "status": "connected"
      }
    ]
  }
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}