Retrieves logs (daily care notes) logged by staff members about residents' care, activities, and observations.
Filters:
homeId- Filter by specific care homeresidentId- Filter by specific residentcategoryId- Filter by log category (e.g., Meals & Nutrition)itemId- Filter by log category item (e.g., Breakfast)loggedById- Filter by user who logged the entrystartDate,endDate- Date range filteringdateField- Date field to filter on (default: timeLogged)page,limit- Pagination controls (default: page=1, limit=10, max=100)
Note: Deleted logs are automatically excluded from results.
Security
bearer
GET
curl -i -X GET \
'https://data.logmycare.co.uk/openapi/api/logs?startDate=2026-01-01&endDate=2026-12-31&page=1&limit=10&homeId=home-123-abc&residentId=63299b624e4c26570fe21e75&categoryId=5f155c4ac49007031a671d4f&itemId=5f155c4ac49007031a671d50&loggedById=68ef4775c1e051de495b175a&dateField=timeLogged'Successfully retrieved records
Array of logs (daily care notes) with enriched data
Example:
[ { "id": "6980bf40b0d86defd672b8a1", "title": "Resident had a good breakfast", "type": "log", "timeLogged": "2026-02-02T15:14:02.272Z", "originalTimeLog": "2026-02-02T15:14:08.625Z", "description": "Ate all food, engaged in conversation with other residents. No assistance required.", "location": "Dining Room", "deleted": false, "home": { … }, "resident": { … }, "loggedBy": { … }, "editedBy": { … }, "category": { … }, "item": { … }, "editedAt": "2026-02-02T15:20:00.000Z", "revisions": 0, "picture1": "https://lmc-care-uploads.s3.eu-west-2.amazonaws.com/photos/home/logs/example-home-id/photo1.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=EXAMPLE%2F20260202%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20260202T151402Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=examplesignature", "picture2": null, "picture3": null, "videoFile": null, "videoThumbnail": null, "hidden": false, "isNextHandover": false, "revoked": false, "revokedAt": null, "nonEditable": false, "amount1": 250, "amount2": 0, "amountType": "ml", "stockQuantityType": "volume", "latitude": 51.5, "longitude": -1.5, "accuracy": 10, "itemSublevel": "Lunch", "doneBySu": false, "response": { … } } ]
Response
- number
- string
{ "data": [ { … } ], "pagination": { "page": 1, "limit": 10, "total": 150, "totalPages": 15, "hasNext": true, "hasPrev": false } }