Skip to main content
POST
/
Agent
/
Wallet
/
GetBalance
Get Balance
curl --request POST \
  --url https://{host}/Agent/Wallet/GetBalance \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "amount": 123,
  "reserved": 123,
  "currency": "<string>",
  "timestamp": "2023-11-07T05:31:56Z"
}

Overview

Allows the client to retrieve information about the current state of its wallet.

Authentication

Requires a valid JWT bearer token.

Notes

This endpoint uses the request schema notation described in Pattern matching.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

The body is of type object.

Response

200 - application/json

Success

amount
number<double>
required
reserved
number<double>
required
currency
string
required
timestamp
string<date-time>
required