Wallet information
Returns full information about a wallet, including:
metadata (type, network, freeze state)
encrypted private key
current balances for all coins/tokens stored on the wallet
Wallet Information
POST https://api-processing.crypto-chief.com/v1/wallet/info
Headers
Name
Value
Content-Type
application/json
Signature
Signed request body
Merchant
Merchant ID
Body
Name
Type
Required
Description
uuid
string
true
UUID of the wallet to fetch.
Response
{
"uuid": "8c1bd3c3-5c7c-4c1c-9af1-0f2127d8c317",
"type": "master",
"address": "0x12f34a9b8c7e56d0b98bcd00123456789abcdeff",
"network": "ethereum",
"frozen": false,
"created_at": string, // ISO-8601 order creation date/time
"private_key_encrypted": "MII...QAB",
"coins": [
{
"symbol": "ETH",
"contract": null,
"value": "100000000000000000",
"human_value": "0.1",
"decimals": 18,
"type": "native"
},
{
"symbol": "USDT",
"contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"value": "25000000",
"human_value": "25",
"decimals": 6,
"type": "token"
}
]
}
{
"data": null,
"error": {
"status": 400,
"name": "BadRequestError",
"message": "Bad request, wallet not exist",
"details": {}
}
}Last updated