> ## 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.

# Delete Annotation

> Permanently delete an annotation.

## Path Parameters

<ParamField path="id" type="string" required>
  The annotation ID. Example: `ann_m2k8v`.
</ParamField>

## Response

Returns `204 No Content` on success.

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

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