Thrive AI Health
Api reference

Retrieve the user record

Read the partner-facing user record (UUID + `UserProfile` block). For a one-call dashboard view that also includes location, privacy, and connected devices, use `GET /v1/users/{user_id}/health-profile` instead.

GET
/v1/users/{user_id}

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"
{
  "data": {
    "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
    "profile": {
      "name": "string",
      "email": "user@example.com",
      "phone": "string",
      "timezone": "string",
      "birthday": "string",
      "weight": 0,
      "weight_unit": "kg",
      "height": 0,
      "height_unit": "cm",
      "preferences": "string",
      "pre_existing_conditions": [
        {}
      ],
      "gender": "male",
      "ethnicity": "string"
    }
  }
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}