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

X-Client-Secret
string
header
required

Contact Mesh to get client Secret

X-Client-Id
string
header
required

Contact Mesh to get client Id

Body

application/json

Response

200
application/json

OK

The response is of type object.