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

# Delete Project

> Delete a project (owner only)

## Request

```bash theme={null}
DELETE https://api.pathors.com/v1/projects/{projectId}
```

### Path Parameters

<ParamField path="projectId" type="string" required>
  The project ID
</ParamField>

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token using your developer key
</ParamField>

## Response

```json theme={null}
{
  "message": "Project deleted"
}
```

<Warning>
  This action is irreversible. All associated data (agent config, pathway, tools, sessions) will be permanently deleted.
  Only the project **owner** can delete a project.
</Warning>
