Request
| Parameter | Description |
|---|---|
X-ApiKeyquery stringrequired | Your 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.
| Parameter | Description |
|---|---|
amountnumber | Account balance at the time of the request. |
currencystring | Currency of this balance entry. |
JSON response
[
{
"amount": 392.5,
"currency": "EUR"
}
]