## List valuations `GET https://getkollek.com/api/copies/{copy}/valuations` Retrieve the valuations recorded against a copy: what it has been reckoned to be worth over time. They are returned most recent first. Valuations are append-only. Changing what a copy is worth records a new valuation rather than overwriting an old one, and the latest by `valued_at` is what the application shows as the current estimated value. A purchase price is not a valuation: what was actually paid belongs to a transaction. A valuation is only ever an estimate of worth. **Permissions:** Any member of the account. ### Path parameters - `copy` (integer, required): The ID of the copy the valuation belongs to. ### Query parameters - `per_page` (integer, optional): The number of valuations to return per page, between 1 and 100. Default: `10`. - `page` (integer, optional): The page number to return. Default: `1`. **Returns:** A paginated list of valuation objects. ### Example request ```bash curl https://getkollek.com/api/copies/1/valuations \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": [ { "type": "valuation", "id": "2", "attributes": { "copy_id": "1", "type": "professional_appraisal", "amount": 25000, "currency_code": "USD", "valued_at": 1752537600, "confidence": "high", "valuer": null, "method": null, "source_url": null, "reference_number": null, "note": null, "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/copies/1/valuations/2" } }, { "type": "valuation", "id": "1", "attributes": { "copy_id": "1", "type": "user_estimate", "amount": 10000, "currency_code": "USD", "valued_at": 1752537600, "confidence": "unknown", "valuer": null, "method": null, "source_url": null, "reference_number": null, "note": null, "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/copies/1/valuations/1" } } ], "links": { "first": "https://getkollek.com/api/copies/1/valuations?page=1", "last": "https://getkollek.com/api/copies/1/valuations?page=1", "prev": null, "next": null }, "meta": { "current_page": 1, "from": 1, "last_page": 1, "links": [ { "url": null, "label": "« Previous", "active": false }, { "url": "https://getkollek.com/api/copies/1/valuations?page=1", "label": "1", "active": true }, { "url": null, "label": "Next »", "active": false } ], "path": "https://getkollek.com/api/copies/1/valuations", "per_page": 10, "to": 2, "total": 2 } } ```