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

# Delete Avatar

> Permanently delete a user-uploaded avatar

Permanently deletes an avatar. Only succeeds for avatars that you uploaded yourself — you cannot delete avatars owned by other users.

### Path Parameters

<ParamField path="id" type="string" required>
  The avatar ID to delete (format: `avat_<ULID>`). You can find your avatars at [app.agenthuman.com/avatars](https://app.agenthuman.com/avatars) or via [Upload Face Avatar](/api-reference/endpoints/upload-face-avatar).
</ParamField>

### Response

<ResponseField name="success" type="boolean">
  Whether the avatar was deleted successfully.
</ResponseField>

<ResponseExample>
  ```json 200 - Success theme={null}
  {
    "success": true
  }
  ```

  ```json 404 - Not Found theme={null}
  {
    "success": false,
    "error": {
      "message": "Avatar not found"
    }
  }
  ```

  ```json 403 - Forbidden theme={null}
  {
    "success": false,
    "error": {
      "message": "You do not have permission to delete this avatar"
    }
  }
  ```

  ```json 401 - Unauthorized theme={null}
  {
    "success": false,
    "error": {
      "message": "Unauthorized"
    }
  }
  ```
</ResponseExample>
