POST
/
account
/
balances
cURL
curl --request POST \
  --url https://core-api-dev.vanish.trade/account/balances \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "timestamp": "<string>",
  "user_address": "<string>",
  "signature": "<string>"
}'
[
  {
    "token_address": "<string>",
    "balance": "<string>",
    "program_id": "<string>"
  }
]

Authorizations

x-api-key
string
header
required

Body

application/json

Request payload for querying balances.

The body is of type object.

Response

200
application/json

A successful response containing the user's token balances.

The response is of type object[].