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

# Delete agent

> Permanently delete an AI agent by UUID via the Nedzo REST API. Removes the agent and its configuration from the workspace. Cannot be undone.

<ParamField path="id" type="string" required>
  The unique UUID of the Agent
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.nedzo.ai/v1/agents/123e4567-e89b-12d3-a456-426614174000" \
      -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  // 204 No Content
  ```
</ResponseExample>
