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

# Delete Drive

> Delete a drive and all its files.

Permanently deletes the drive, all files in it (from both storage and database), and any associated claim tokens. This action cannot be undone.

## Path Parameters

<ParamField path="id" type="string" required>
  The drive UUID.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.getagentdrive.com/v0/drives/YOUR_DRIVE_ID \
    -H "Authorization: Bearer agd_your_key"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "id": "d7f3e-abc-123",
      "deleted": true
    }
  }
  ```
</ResponseExample>
