> ## 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 Link

> Remove a link from your account

Permanently delete a link from your account.

**Request:**

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

**Response:**

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

## Authorization

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

## Path Parameters

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

## Query Parameters

<Warning>
  Deleting a link is permanent and cannot be undone. All analytics data associated with the link will also be removed.
</Warning>
