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

# Delete Agent

Delete an agent configuration. This action is irreversible.

<ParamField path="id" type="string" required>
  The agent ID
</ParamField>

<CodeGroup>
  ```bash cURL theme={null}
  curl -X DELETE https://api.artaios.ai/api/v1/agent/550e8400-e29b-41d4-a716-446655440000/ \
    -H "x-api-key: YOUR_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  response = requests.delete(
      "https://api.artaios.ai/api/v1/agent/550e8400-e29b-41d4-a716-446655440000/",
      headers={"x-api-key": "YOUR_API_KEY"}
  )
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.artaios.ai/api/v1/agent/550e8400-e29b-41d4-a716-446655440000/', {
    method: 'DELETE',
    headers: {
      'x-api-key': 'YOUR_API_KEY'
    }
  });
  ```
</CodeGroup>

## Response

Returns `204 No Content` on success.

<Warning>
  This action permanently deletes the agent configuration and cannot be undone.
</Warning>
