GET /v1/check-ins
Service: clinical · operationId: (none)
List completed 30/60/90 day check-ins for the authenticated patient
Required scopes
(no scope declared — review service config)
Responses
200 Completed patient check-ins
{
"type": "object",
"properties": {
"check_ins": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"patient_id": {
"type": "string"
},
"day_marker": {
"anyOf": [
{
"type": "number",
"enum": [
30
]
},
{
"type": "number",
"enum": [
60
]
},
{
"type": "number",
"enum": [
90
]
}
]
},
"goals": {
"type": "array",
"items": {
"type": "string"
}
},
"wins": {
"type": "array",
"items": {
"type": "string"
}
},
"blockers": {
"type": "array",
"items": {
"type": "string"
}
},
"protocol_changes": {
"type": [
"string",
"null"
]
},
"mood": {
"type": "integer"
},
"weight_kg": {
"type": [
"number",
"null"
]
},
"sleep_quality": {
"type": "integer"
},
"completed_at": {
"type": "string",
"format": "date-time"
},
"created_at": {
"type": "string",
"format": "date-time"
}
},
"required": [
"id",
"patient_id",
"day_marker",
"goals",
"wins",
"blockers",
"protocol_changes",
"mood",
"weight_kg",
"sleep_quality",
"completed_at",
"created_at"
]
}
}
},
"required": [
"check_ins"
]
}500 Internal error
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"message": {
"type": "string"
}
},
"required": [
"error",
"message"
]
}Example
curl -X GET https://clinical.platform.loop.health/v1/check-ins \
-H "Authorization: Bearer $ACCESS_TOKEN"Related
services/clinical— service overview- All endpoints — directory across services
- Auth model — how scopes are enforced