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

# Delete chat

> Delete a Vouch AI conversation and its messages.

Permanently deletes a chat and all of its messages. Only the chat's owner can delete it.

<Note>
  Vouch AI endpoints require a positive wallet balance.
</Note>

## Path parameters

<ParamField path="chatId" type="string" required>
  The chat session ID.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.vouchmark.com/v1/chat/chat_aBcD... \
    -H "Authorization: Bearer $TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "message": "Chat deleted successfully",
    "data": null
  }
  ```
</ResponseExample>

Returns `404` with `{ "success": false, "message": "Chat not found" }` if the chat does not exist or is not yours.
