GET
/
v1
/
accounts
/
{id}
/
balances
Get Account Balances
curl --request GET \
  --url https://api.tradearies.dev/v1/accounts/{id}/balances \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <api-key>'
{
  "sodPositionsMarketValue": "<string>",
  "netBuyingPower": "<string>",
  "stockBuyingPower": "<string>",
  "dayTradeBuyingPower": "<string>",
  "optionBuyingPower": "<string>",
  "dayTradeOvernightRegTBuyingPower": "<string>",
  "totalEquity": "<string>",
  "settledFunds": "<string>",
  "unsettledFunds": "<string>",
  "heldBackFunds": "<string>",
  "grossMargin": "<string>",
  "pendingOrdersMarginRequirements": "<string>"
}

Authorizations

X-API-Key
string
header
required
Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Account ID

Response

200
application/json

Account balances retrieved successfully

The response is of type object.