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

# Delete List

> Delete a list and all its items

Permanently delete a list and all its items. This action cannot be undone.

<ParamField path="list_id" type="string" required>
  The list ID to delete.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "deleted": true
    }
  }
  ```

  ```json 404 theme={null}
  {
    "error": {
      "code": "not_found",
      "message": "No list found with ID abc-123"
    }
  }
  ```
</ResponseExample>
