Address Operations
Update Address
API Documentation
Wallet Management
Address Operations
- GETGet Addresses
- POSTGenerate Address
- GETGet Address
- PATCHUpdate Address
- POSTWhitelist address
- DELUnwhitelist address
- GETGet Balance
- GETGet Balances
- GETGet transactions
- POSTWithdraw Network Fee
- POSTWithdraw
- POSTGet Swap Quote
- POSTSwap Execute
- POSTCustom Smart Contract Network Fee
- POSTCustom Smart Contract Read
- POSTCustom Smart Contract Write
Withdrawals
Custom Smart Contracts
Asset Management
Transactions
AML(Anti Money Laundering)
Auto Settlements
Asset Recovery
Payment Links
Miscellaneous
Address Operations
Update Address
This endpoint allows the client to update the status of a specific address within a wallet.
Body Parameters
Key | Required | Type | Description |
---|---|---|---|
isActive | true | boolean | The status state you want to set the address |
PATCH
/
v1
/
wallets
/
{walletId}
/
addresses
/
{addressId}
curl --request PATCH \
--url https://api.blockradar.co/v1/wallets/{walletId}/addresses/{addressId} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"disableAutoSweep": "OPTIONAL_BOOLEAN",
"enableGaslessWithdraw": "OPTIONAL_BOOLEAN",
"isActive": "OPTIONAL_BOOLEAN",
"metadata": "OPTIONAL_METADATA",
"name": "OPTIONAL_ADDRESS_NAME",
"showPrivateKey": "OPTIONAL_BOOLEAN"
}'
{
"data": {
"address": "0x3ec2a234DE95cC783291241B7070b19786b25d5b",
"blockchain": {
"createdAt": "2024-05-27T08:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/Base_Network_Logo_vqyh7r.png",
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-27T07:52:16.115Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"enableGaslessWithdraw": true,
"showPrivateKey": false
},
"createdAt": "2024-11-11T16:48:19.682Z",
"derivationPath": "m/44'/60'/0'/0/104",
"id": "4982f18a-e9ec-43e8-b8a7-39de40f45e6f",
"isActive": true,
"metadata": null,
"name": "Customer 2",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-11-11T16:55:05.320Z"
},
"message": "Address updated successfully",
"statusCode": 200
}
Authorizations
Path Parameters
Example:
"YOUR_WALLET_ID"
Example:
"ADDRESS_ID"
Body
application/json
Response
200 - application/json
200
The response is of type object
.
curl --request PATCH \
--url https://api.blockradar.co/v1/wallets/{walletId}/addresses/{addressId} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"disableAutoSweep": "OPTIONAL_BOOLEAN",
"enableGaslessWithdraw": "OPTIONAL_BOOLEAN",
"isActive": "OPTIONAL_BOOLEAN",
"metadata": "OPTIONAL_METADATA",
"name": "OPTIONAL_ADDRESS_NAME",
"showPrivateKey": "OPTIONAL_BOOLEAN"
}'
{
"data": {
"address": "0x3ec2a234DE95cC783291241B7070b19786b25d5b",
"blockchain": {
"createdAt": "2024-05-27T08:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/Base_Network_Logo_vqyh7r.png",
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-27T07:52:16.115Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"enableGaslessWithdraw": true,
"showPrivateKey": false
},
"createdAt": "2024-11-11T16:48:19.682Z",
"derivationPath": "m/44'/60'/0'/0/104",
"id": "4982f18a-e9ec-43e8-b8a7-39de40f45e6f",
"isActive": true,
"metadata": null,
"name": "Customer 2",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-11-11T16:55:05.320Z"
},
"message": "Address updated successfully",
"statusCode": 200
}