User Balance

Get Balance

GET https://api.abcc.com/api/v1/members/me

Query Parameters

NameTypeDescription

signature

string

access_key

string

tonce

boolean

Timestamp of the current time in milliseconds (Unix epoch)

{
	"sn": "XXXXXXXXXXXXXX",
	"name": null,
	"email": "abcc@abcc.com",
	"activated": true,
	"accounts": [{
		"currency": "btc",
		"balance": "58.526256078",
		"locked": "0.0"
	}, {
		"currency": "ltc",
		"balance": "0.0",
		"locked": "0.0"
	}, {
		"currency": "eth",
		"balance": "55.348629",
		"locked": "1075.85993"
	}, {
		"currency": "usdt",
		"balance": "25601036.592404472658",
		"locked": "10231.723031090348"
	}, {
		"currency": "hkmt",
		"balance": "1005900.0",
		"locked": "0.0"
	}, {
		"currency": "usmt",
		"balance": "1000.0",
		"locked": "0.0"
	},{
		"currency": "alg",
		"balance": "997164.0235",
		"locked": "18.1935"
	}, {
		"currency": "sand",
		"balance": "2089218.0",
		"locked": "1111.0"
	}, {
		"currency": "usdt-erc20",
		"balance": "0.0",
		"locked": "0.0"
	}, {
		"currency": "usdc",
		"balance": "2980316.40286014866",
		"locked": "2004192.52"
	}, {
		"currency": "bnb",
		"balance": "0.01",
		"locked": "0.0"
	}]
}

OUTPUT EXPLANATION

Script

Type

Explain

sn

String

User serial number

name

String

Name

email

String

mailbox

activated

Boolean

account status

accounts

Array

Account list

accounts[0]

Hash

Account details

accounts[0].currency

String

Account currency

accounts[0].balance

Integer

Available balance

accounts[0].locked

String

Locked

Notice

The balance is the available balance of the account and does not include the amount locked by the user.

Last updated