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

# Delete Project

> Remove a project from your account

**Request:**

```bash cURL theme={null}
curl -X DELETE 'https://api.taap.it/v1/projects/project_987654321' \
  -H 'Authorization: Bearer taapit_your_api_key_here'
```

**Response:**

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

## Authorization

<ParamField header="Authorization" type="string" required>
  Bearer token for API authentication. Format: `Bearer YOUR_API_KEY`
</ParamField>

## Path Parameters

<ParamField path="project_id" type="string" required>
  Unique identifier for the project to delete
</ParamField>

<Warning>
  Deleting a project will not delete the links associated with it. Links will remain but will no longer be associated with the deleted project.
</Warning>
