Skip to main content
Get a list of balances
curl --request POST \
  --url https://app.alphapo.net/api/v2/accounts/list \
  --header 'X-processing-key: <api-key>' \
  --header 'X-processing-signature: <api-key>'
{
  "data": [
    {
      "currency": "BTC",
      "type": "crypto",
      "balance": 0.04
    }
  ]
}

Authorizations

X-processing-key
string
header
required

Your API key.

X-processing-signature
string
header
required

The request body, signed with HMAC-SHA512 with your secret key. You can find the secret key in your account.

Response

200 - application/json

OK

currency
string
required

Account currency.

type
enum<string>
required

Whether this account is for a crypto or a fiat currency.

Available options:
crypto,
fiat
balance
number
required

Balance amount.