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
}
]
}Get a list of your balances for each cryptocurrency, including zero 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
}
]
}Your API key.
The request body, signed with HMAC-SHA512 with your secret key. You can find the secret key in your account.
Was this page helpful?