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

# Delete Withdrawal Address

<Info>
  Requires **Privy authentication**. Pass the Privy identity token in the `identity` header as `Bearer <token>`. HMAC and API-token auth are not accepted for withdrawal-address allowlist management.
</Info>

Deletes a withdrawal destination allowlist entry from the authenticated profile.

* Route: `DELETE /portfolio/withdrawal-addresses/:address`
* Auth: Privy identity token only

### Path parameters

| Parameter | Type     | Required | Description                                              |
| --------- | -------- | -------- | -------------------------------------------------------- |
| `address` | `string` | Yes      | Destination wallet address to remove from the allowlist. |

### Example

```bash theme={null}
curl -X DELETE "https://api.limitless.exchange/portfolio/withdrawal-addresses/0x0F3262730c909408042F9Da345a916dc0e1F9787" \
  -H "identity: Bearer <privy_identity_token>"
```

### Notes

* The allowlist entry is removed from the authenticated profile.
* This endpoint does not accept HMAC/scoped API-token auth.
