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": ""
}
Get real-time account fiat balances.
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": ""
}
Contact Mesh to get client Secret
Contact Mesh to get client Id
OK
The response is of type object
.
Was this page helpful?