## Get a document `GET https://getkollek.com/api/documents/{document}` Retrieve a single document by its ID. The stored disk path is never exposed; a stored file is reached through its download_url. **Permissions:** Any member of the account. ### Path parameters - `document` (integer, required): The ID of the document. **Returns:** A document object, or 404 when the document does not belong to your account. ### Example request ```bash curl https://getkollek.com/api/documents/1 \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": { "type": "document", "id": "1", "attributes": { "documentable_type": "valuation", "documentable_id": "5", "document_type": "receipt", "name": "Appraisal report", "external_url": null, "download_url": "https://getkollek.com/api/documents/1", "mime_type": "application/pdf", "size": 248000, "description": "Signed and dated by the appraiser.", "issued_at": 1704067200, "reference_number": "INV-2024-0117", "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/documents/1" } } } ```