> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getmatter.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove Tag from Item

> Remove a tag from an item.

## Path Parameters

<ParamField path="item_id" type="string" required>
  The item ID. Example: `itm_r9f3a`.
</ParamField>

<ParamField path="tag_id" type="string" required>
  The tag ID. Example: `tag_n5j2x`.
</ParamField>

## Response

Returns `204 No Content` on success. The tag itself is not deleted — only the association with this item is removed.

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.getmatter.com/public/v1/items/itm_r9f3a/tags/tag_n5j2x \
    -H "Authorization: Bearer mat_your_token_here"
  ```

  ```python Python theme={null}
  response = requests.delete(
      "https://api.getmatter.com/public/v1/items/itm_r9f3a/tags/tag_n5j2x",
      headers={"Authorization": f"Bearer {token}"}
  )
  assert response.status_code == 204
  ```
</RequestExample>

<ResponseExample>
  ```json 204 theme={null}
  (No content)
  ```
</ResponseExample>
