## Get an item photo `GET https://getkollek.com/api/items/{item}/photos/{photo}` Retrieve the metadata of a single item photo by its ID. **Permissions:** Any member of the account. ### Path parameters - `item` (integer, required): The ID of the item the photo belongs to. - `photo` (integer, required): The ID of the photo. **Returns:** An item photo object, or 404 when the photo does not belong to your account. ### Example request ```bash curl https://getkollek.com/api/items/1/photos/1 \ -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" } } } ```