Retrieves care plans with goals, assessments, documents, and tracking information.
Filters:
homeId- Filter by specific care homeresidentId- Filter by specific residentcarePlanId- Filter by care plan IDstartDate,endDate- Date range filteringdateField- Date field to filter on (default: createdOn)page,limit- Pagination controls
Security
bearer
GET
curl -i -X GET \
'https://data.logmycare.co.uk/openapi/api/careplans?startDate=2026-01-01&endDate=2026-12-31&page=1&limit=10&homeId=home-123-abc&residentId=resident-456-def&dateField=created_on&carePlanId=CP-2024-001'Successfully retrieved records
Array of care plans with comprehensive care information
Example:
[ { "id": "697b6a5b943a178423a9264b", "name": "Enhanced Mobility Care Plan", "home": { … }, "resident": { … }, "editedBy": { … }, "goals": [ … ], "needs": "Requires support with mobility and transfers.", "strengths": "Motivated to remain independent; engages well with physiotherapy.", "reviewComment": "Progressing well, continue current plan.", "nextReviewDate": "2026-04-29T00:00:00.000Z", "editedOn": "2026-02-01T11:00:00.000Z", "createdOn": "2026-01-29T14:10:35.209Z", "isCustom": true, "outcomes": "Maintain independent mobility within the home.", "sections": [ … ], "documents": [ … ], "revisions": 1, "carePlanId": "5f213e77cdd809d04ba664be", "isRevision": false, "skillNeeds": [ … ], "subActivity": "Transfers", "fluidTracking": { … }, "riskAssessments": [ … ], "noIdentifiedNeed": false, "noFurtherSupportRequired": false } ]
Response
{ "data": [ { … } ], "pagination": { "page": 1, "limit": 10, "total": 150, "totalPages": 15, "hasNext": true, "hasPrevious": false } }