## List insurance records `GET https://getkollek.com/api/copies/{copy}/insurance-records` Retrieve the insurance coverage held against a copy: the policies, providers and insured values it has carried. They are returned newest window first. Coverage is historical. Changing the insured value records a new record rather than overwriting an old one, so a copy accumulates records as its policies and values change. A copy may hold only one active record per policy number at a time. Recording or reviving a second active record under the same policy number is rejected with a validation error. **Permissions:** Any member of the account. ### Path parameters - `copy` (integer, required): The ID of the copy the insurance record belongs to. ### Query parameters - `per_page` (integer, optional): The number of insurance records 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 insurance record objects. ### Example request ```bash curl https://getkollek.com/api/copies/1/insurance-records \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": [ { "type": "insurance_record", "id": "2", "attributes": { "copy_id": "1", "provider": "Collectibles Insurance Services", "policy_number": "CIS-88231", "coverage_type": "Scheduled item", "insured_value": 45000, "currency_code": "USD", "deductible_amount": 10000, "deductible_currency_code": "USD", "starts_at": 1704067200, "ends_at": null, "status": "active", "is_scheduled_item": true, "contact_name": "Dana Whitfield", "contact_email": "dana@cisinsurance.com", "contact_phone": "+1 888 837 9537", "note": null, "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/copies/1/insurance-records/2" } }, { "type": "insurance_record", "id": "1", "attributes": { "copy_id": "1", "provider": "Homeowner Rider (Allstate)", "policy_number": "CIS-88231", "coverage_type": "Scheduled item", "insured_value": 30000, "currency_code": "USD", "deductible_amount": 10000, "deductible_currency_code": "USD", "starts_at": 1704067200, "ends_at": null, "status": "expired", "is_scheduled_item": true, "contact_name": "Dana Whitfield", "contact_email": "dana@cisinsurance.com", "contact_phone": "+1 888 837 9537", "note": null, "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/copies/1/insurance-records/1" } } ], "links": { "first": "https://getkollek.com/api/copies/1/insurance-records?page=1", "last": "https://getkollek.com/api/copies/1/insurance-records?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/insurance-records?page=1", "label": "1", "active": true }, { "url": null, "label": "Next »", "active": false } ], "path": "https://getkollek.com/api/copies/1/insurance-records", "per_page": 10, "to": 2, "total": 2 } } ```