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

# Delete Wallet

> Deactivate a cryptocurrency wallet (soft delete)

<Warning>
  After deletion, the wallet's address will no longer be monitored for incoming transactions.
</Warning>

## Path Parameters

<ParamField path="account_id" type="string" required>
  The account's external ID (starts with `acc_`)
</ParamField>

<ParamField path="wallet_id" type="string" required>
  The wallet's external ID (starts with `wal_`)
</ParamField>

## Response

<ResponseField name="id" type="string">
  The wallet identifier that was deactivated
</ResponseField>

<ResponseField name="object" type="string">
  Always returns `"wallet"`
</ResponseField>

<ResponseField name="deleted" type="boolean">
  Always returns `true`
</ResponseField>

## Response Example

```json theme={null}
{
  "id": "wal_fxnw87105mc1vuru4q8yzrez",
  "object": "wallet",
  "deleted": true
}
```
