Fetch Balance

Returns user's wallet balance

This endpoint returns the wallet balance of the user. It returns a list of coins held by the user and their respective available and blocked balance.

Fetch User Wallet Balance

POST https://integration.coinmena.com/onramp-bank/api/v1/user/balance

Request Body

NameTypeDescription

customerId*

String

Unique id of user

{
    "status": 1,
    "code": 200,
    "data": [
        {
            "coinName": "USDT",
            "availableBalance": 100,
            "blockedBalance": 0
        },
        {
            "coinName": "ETH",
            "availableBalance": 100,
            "blockedBalance": 0
        }
    ]
}
{
    "status": 1,
    "code": 200,
    "data": [
        {
            "coinName": "USDT",
            "availableBalance": 100,
            "blockedBalance": 0
        },
        {
            "coinName": "ETH",
            "availableBalance": 100,
            "blockedBalance": 0
        }
    ]
}

Last updated