## List the tags of an item `GET https://getkollek.com/api/items/{item}/tags` Retrieve the tags attached to an item, oldest first. Tags are shared across the account, so the same tag can be on many items. **Permissions:** Any member of the account. ### Path parameters - `item` (integer, required): The ID of the item. **Returns:** A list of tag objects, or 404 when the item does not belong to your account. ### Example request ```bash curl https://getkollek.com/api/items/1/tags \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": [ { "type": "tag", "id": "1", "attributes": { "name": "Signed", "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/tags/1" } }, { "type": "tag", "id": "2", "attributes": { "name": "First Issue", "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/tags/2" } } ] } ```