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

# Delete Project

> Permanently delete a project and all its associated data

```
DELETE /openapi/memorylake/api/v1/projects/{id}
```

<Warning>
  This is a destructive operation. The project and all its associated data will be permanently removed.
</Warning>

<Note>
  **Permission required:** [`project:delete`](/features/team-collaboration/permission-reference#delete-a-project) · `instance`
</Note>

### Path Parameters

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

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE 'https://app.memorylake.ai/openapi/memorylake/api/v1/projects/proj-a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6' \
    -H 'Authorization: Bearer sk_xxxxxx'
  ```
</RequestExample>

### Response

<ResponseField name="success" type="boolean">Indicates if the request was successful</ResponseField>
<ResponseField name="message" type="string">Human-readable status message</ResponseField>

<ResponseExample>
  ```json Success (200) theme={null}
  {
    "success": true,
    "message": "Project deleted successfully"
  }
  ```
</ResponseExample>
