## List the trash `GET https://getkollek.com/api/trash` Retrieve everything your account has soft deleted and can still restore: collections, items, copies, categories and sets. The list is sorted by urgency, so whatever expires first comes first. Deleting a parent does not stamp its children, so this only surfaces the objects someone deleted on purpose. Restoring a collection brings its items back with it. The list merges five tables into one, so it is returned whole rather than paginated. The id is the ID of the object in its own table, which means an id is only unique together with object_type. **Permissions:** Any member of the account. **Returns:** A list of trashed_object entries. ### Example request ```bash curl https://getkollek.com/api/trash \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": [ { "type": "trashed_object", "id": "7", "attributes": { "object_type": "item", "name": "Amazing Spider-Man #1", "subtitle": "My Comics", "deleted_at": 1752537600, "deleted_by_name": "Rachel Green", "days_left": 3 } }, { "type": "trashed_object", "id": "2", "attributes": { "object_type": "collection", "name": "My Vinyl", "subtitle": null, "deleted_at": 1752537600, "deleted_by_name": "Rachel Green", "days_left": 27 } } ] } ```