Skip to main content
DELETE
https://apis.hopnow.io
/
v1
/
accounts
/
{account_id}
/
wallets
/
{wallet_id}
Delete Wallet
curl --request DELETE \
  --url https://apis.hopnow.io/v1/accounts/{account_id}/wallets/{wallet_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "<string>",
  "deleted": true
}
After deletion, the wallet’s addresses will no longer be monitored for incoming transactions.

Path Parameters

account_id
string
required
The account’s external ID (starts with acc_)
wallet_id
string
required
The wallet’s external ID (starts with wlt_)

Response

id
string
The wallet identifier that was deactivated
object
string
Always returns "wallet"
deleted
boolean
Always returns true

Response Example

{
  "id": "wlt_1234567890abcdef",
  "object": "wallet",
  "deleted": true
}