Skip to page content

Get balance

Read your account balance and currency.

GEThttps://api.quantumtec.eu/v1/Common/balance

GET: X-ApiKey in the URLAuthentication

Request

Request
ParameterDescription
X-ApiKeyquery stringrequiredYour API v1 key.
cURL · GET
curl --get 'https://api.quantumtec.eu/v1/Common/balance' \
  --header 'Accept: application/json' \
  --data-urlencode 'X-ApiKey=YOUR_API_KEY'

Response

The response is an array of balance entries, each with its own currency.

Response
ParameterDescription
amountnumberAccount balance at the time of the request.
currencystringCurrency of this balance entry.
JSON response
[
  {
    "amount": 392.5,
    "currency": "EUR"
  }
]