Thrive AI Health
Api reference

List supported wearable providers

Returns every supported provider regardless of whether the caller has registered credentials. Safe to cache client-side. `auth_type` indicates the connection flavor (`oauth`, `credentials`, `native`); `supported_resources` lists the canonical metric slugs each provider can supply.

GET
/v1/devices

Query Parameters

limit?Limit
Default10
Range1 <= value <= 200
offset?Offset
Default0
Range0 <= value

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/devices"
{
  "data": [
    {
      "slug": "string",
      "name": "string",
      "logo": "string",
      "description": "string",
      "auth_type": "oauth",
      "supported_resources": [
        "string"
      ]
    }
  ],
  "pagination": {
    "limit": 25,
    "offset": 0,
    "total": 0
  }
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}