Balance
Get account balance
Managed Account Authentication
Managed Transfers
Transactions
Self Managed Account Authentication
Balance
Get account balance
Get real-time account fiat balances.
POST
/
api
/
v1
/
balance
/
get
curl --request POST \
--url https://integration-api.meshconnect.com/api/v1/balance/get \
--header 'Content-Type: application/json' \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>' \
--data '{
"authToken": "Secret authentication token",
"type": "binanceInternationalDirect"
}'
{
"content": {
"balances": [
{
"cash": 158.5,
"buyingPower": 258.5,
"currencyCode": "USD"
},
{
"cash": 10,
"buyingPower": 10,
"currencyCode": "EUR"
}
],
"totalCashUsdValue": 10,
"totalBuyingPowerUsdValue": 10
},
"status": "ok",
"message": "",
"errorType": ""
}
Authorizations
Contact Mesh to get client Secret
Contact Mesh to get client Id
Body
application/json
Response
200
application/json
OK
The response is of type object
.
curl --request POST \
--url https://integration-api.meshconnect.com/api/v1/balance/get \
--header 'Content-Type: application/json' \
--header 'X-Client-Id: <api-key>' \
--header 'X-Client-Secret: <api-key>' \
--data '{
"authToken": "Secret authentication token",
"type": "binanceInternationalDirect"
}'
{
"content": {
"balances": [
{
"cash": 158.5,
"buyingPower": 258.5,
"currencyCode": "USD"
},
{
"cash": 10,
"buyingPower": 10,
"currencyCode": "EUR"
}
],
"totalCashUsdValue": 10,
"totalBuyingPowerUsdValue": 10
},
"status": "ok",
"message": "",
"errorType": ""
}