curl --request GET \
--url https://api.elections.kalshi.com/trade-api/v2/portfolio/subaccounts/balances \
--header 'KALSHI-ACCESS-KEY: <api-key>' \
--header 'KALSHI-ACCESS-SIGNATURE: <api-key>' \
--header 'KALSHI-ACCESS-TIMESTAMP: <api-key>'{
"subaccount_balances": [
{
"subaccount_number": 123,
"balance": "0.5600",
"updated_ts": 123
}
]
}Gets balances for all subaccounts including the primary account.
curl --request GET \
--url https://api.elections.kalshi.com/trade-api/v2/portfolio/subaccounts/balances \
--header 'KALSHI-ACCESS-KEY: <api-key>' \
--header 'KALSHI-ACCESS-SIGNATURE: <api-key>' \
--header 'KALSHI-ACCESS-TIMESTAMP: <api-key>'{
"subaccount_balances": [
{
"subaccount_number": 123,
"balance": "0.5600",
"updated_ts": 123
}
]
}Your API key ID
RSA-PSS signature of the request
Request timestamp in milliseconds
Balances retrieved successfully
Show child attributes