Retrieves risk assessments with safety evaluations, hazard identification, risk scores, and mitigation strategies.
Filters:
homeId- Filter by specific care homeresidentId- Filter by specific residentstartDate,endDate- Date range filteringpage,limit- Pagination controls
Security
bearer
GET
curl -i -X GET \
'https://data.logmycare.co.uk/openapi/api/risk-assessments?startDate=2026-01-01&endDate=2026-12-31&page=1&limit=10&homeId=home-123-abc&residentId=resident-456-def&dateField=created_on'Successfully retrieved records
Array of risk assessments
Example:
[ { "id": "696f910b62d69cb14944bd29", "form": { … }, "home": { … }, "resident": { … }, "createdBy": { … }, "seenBy": [], "archived": false, "createdOn": "2026-01-20T14:28:27.400Z", "riskLevel": "high", "riskScore": 12, "incomplete": false, "reviewedOn": "2026-01-20T14:28:27.401Z" } ]
Response
{ "data": [ { … } ], "pagination": { "page": 1, "limit": 10, "total": 150, "totalPages": 15, "hasNext": true, "hasPrev": false } }