## Get a location record `GET https://getkollek.com/api/copies/{copy}/location-history/{locationHistory}` Retrieve a single location history record of a copy by its ID. **Permissions:** Any member of the account. ### Path parameters - `copy` (integer, required): The ID of the copy the record belongs to. - `locationHistory` (integer, required): The ID of the location history record. **Returns:** A location history object, or 404 when the record does not belong to your account. ### Example request ```bash curl https://getkollek.com/api/copies/1/location-history/1 \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": { "type": "location_history", "id": "1", "attributes": { "copy_id": "1", "location_id": "4", "moved_at": 1704067200, "moved_out_at": null, "reason": "Rotated into the display case", "note": null, "is_open": true, "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/copies/1/location-history/1" } } } ```