Retrieves home-scoped documents including policies, procedures, licenses, training materials, and other home-level documentation.
Filters:
homeId- Filter by specific care homecategoryId- Filter by home document categorystartDate,endDate- Date range filteringdateField- Date field to filter on (default: createdAt)page,limit- Pagination controls (default: page=1, limit=10, max=100)
Security
bearer
GET
curl -i -X GET \
'https://data.logmycare.co.uk/openapi/api/home-documents?startDate=2026-01-01&endDate=2026-12-31&page=1&limit=10&homeId=home-123-abc&residentId=resident-456-def&categoryId=5f155c4ac49007031a671d4f&dateField=createdAt'Successfully retrieved records
Array of home documents with enriched data
Example:
[ { "id": "6915ffc2e924f18fb5af8879", "name": "Fire Safety Policy - 2026", "createdAt": "2026-11-13T15:56:50.600Z", "home": { … }, "category": { … }, "pdf": "https://lmc-care-uploads.s3.eu-west-2.amazonaws.com/docs/home/homeDocuments/example-home-id/document-file.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=EXAMPLE%2F20260113%2Feu-west-2%2Fs3%2Faws4_request&X-Amz-Date=20260113T155650Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=examplesignature", "originalFile": "Fire_Safety_Policy_2026.pdf" } ]
Response
{ "data": [ { … } ], "pagination": { "page": 1, "limit": 10, "total": 150, "totalPages": 15, "hasNext": true, "hasPrev": false } }