> ## Documentation Index
> Fetch the complete documentation index at: https://reach-owl.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# DELETE /api/v1/mentions — Delete Monitors and Posts

> Delete a keyword mention monitor by ID or delete an individual mention post. Deletion is permanent and removes all associated post history.

Permanently remove a keyword mention monitor or an individual matched post. Deleting a monitor also removes all associated historical post matches.

<Warning>
  Deletion is permanent. There is no way to recover a deleted monitor or its post history.
</Warning>

## Delete a monitor

Send a DELETE request to `https://reachowl.com/api/v1/mentions/{mention_id}` to remove the monitor and all its matched posts.

```bash theme={null}
curl -X DELETE "https://reachowl.com/api/v1/mentions/88" \
  -H "Authorization: Bearer YOUR_TOKEN"
```

## Delete a mention post

Send a DELETE request to `https://reachowl.com/api/v1/mentions/posts/{post_id}` to remove an individual matched post without deleting the monitor itself.

```bash theme={null}
curl -X DELETE "https://reachowl.com/api/v1/mentions/posts/123" \
  -H "Authorization: Bearer YOUR_TOKEN"
```
