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