## Get a condition `GET https://getkollek.com/api/item-conditions/{itemCondition}` Retrieve a single condition of your account by its ID. **Permissions:** Any member of the account. ### Path parameters - `itemCondition` (integer, required): The ID of the condition. **Returns:** A condition object, or 404 when the condition does not belong to your account. ### Example request ```bash curl https://getkollek.com/api/item-conditions/2 \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": { "type": "item_condition", "id": "2", "attributes": { "name": "Used", "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/item-conditions/2" } } } ```