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

# Delete a link

> Permanently delete a link.

## Path Parameters

<ParamField path="linkId" type="string" required>
  The unique identifier of the link.
</ParamField>

## Response

<ResponseField name="id" type="string">
  The ID of the deleted link.
</ResponseField>

## Code Examples

```bash cURL theme={null}
curl --request DELETE \
  --url https://linkryse.com/v1/links/link_123 \
  --header 'Authorization: Bearer sk_live_...'
```

```javascript Node.js theme={null}
await linkryse.links.delete('link_123');
```
