## List item photos `GET https://getkollek.com/api/items/{item}/photos` Retrieve the photos of an item, in the order the user arranged them. Exactly one photo is the main visual. **Permissions:** Any member of the account. ### Path parameters - `item` (integer, required): The ID of the item the photo belongs to. ### Query parameters - `per_page` (integer, optional): The number of photos 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 item photo objects. ### Example request ```bash curl https://getkollek.com/api/items/1/photos \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": [ { "type": "item_photo", "id": "1", "attributes": { "item_id": "1", "filename": "cover.jpg", "mime_type": "image/jpeg", "size": 204800, "is_main": true, "position": 1, "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/items/1/photos/1" } }, { "type": "item_photo", "id": "2", "attributes": { "item_id": "1", "filename": "cover.jpg", "mime_type": "image/jpeg", "size": 204800, "is_main": false, "position": 2, "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/items/1/photos/2" } } ], "links": { "first": "https://getkollek.com/api/items/1/photos?page=1", "last": "https://getkollek.com/api/items/1/photos?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/items/1/photos?page=1", "label": "1", "active": true }, { "url": null, "label": "Next »", "active": false } ], "path": "https://getkollek.com/api/items/1/photos", "per_page": 10, "to": 2, "total": 2 } } ```