Wallet Balance

Returns wallet balances for the specified blockchain, supporting multiple wallet addresses and multiple token contract addresses in a single request.

Wallet Balance

POST https://api-processing.crypto-chief.com/v1/blockchain/wallet/balance

Headers

Name
Value

Content-Type

application/json

Signature

Signed request body

Merchant

Merchant ID

Body

Name
Type
Required
Description

chain

true

Blockchain chain identifier

addresses

string[]

true

List of wallet addresses

contracts

string[]

false

List of contracts

Response

[
    {
        "chain": "TON_MAINNET",
        "contract": null,
        "address": "UQD4uGNdB4a3f52mYOZf0x1nCmdd1DAvrLppL0a1cetTYCQx",
        "value": "53171786364517605",
        "human_value": "53171786.364517605",
        "decimals": 9,
        "timestamp": 1769256768
    },
    {
        "chain": "TON_MAINNET",
        "contract": "EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs",
        "address": "UQD4uGNdB4a3f52mYOZf0x1nCmdd1DAvrLppL0a1cetTYCQx",
        "value": "318488090291000",
        "human_value": "318488090.291",
        "decimals": 6,
        "timestamp": 1769256768
    }
]

Last updated