POST
/
api
/
v1
/
holdings
/
value
curl --request POST \
  --url https://integration-api.meshconnect.com/api/v1/holdings/value \
  --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": {
    "totalValue": 186.03,
    "totalPerformance": 6.23,
    "equitiesValue": 100.12,
    "equitiesPerformance": 5.3457,
    "cryptocurrenciesValue": 50.37,
    "cryptocurrenciesPerformance": 7.23,
    "nftsValue": 15.34,
    "fiatValue": 20.2
  },
  "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

Request with authentication token.

The body is of type object.

Response

200
application/json

Market values of assets

The response is of type object.