List children in family

GET/families/{familyID}/children
Auth:Bearer

Path parameters

familyID

uuidrequired

Response

id

uuid
family_id

uuid
name

string
birth_date

date
avatar_url

string
created_at

datetime
Request
bash
curl -X GET "https://prodapi.phosra.com/api/v1/families/{familyID}/children" \
  -H "Authorization: Bearer YOUR_API_KEY"
Response
json
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "family_id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "string",
    "birth_date": "2018-06-15",
    "avatar_url": "string",
    "created_at": "2025-01-15T09:30:00Z"
  }
]