v22

latestOpenAPI 3.0.0raw.githubusercontent.com2026-03-03327794.1 KB
Positions

Get position

Get current position for a given account for a given symbol.

get/accounts/{account_id}/positions/{symbol}

Path parameters

account_idstring required

Account ID for the account.

Example:100000
symbolstring required
Example:AAPL

Response

Successful response

account_idstring required

Account ID for the account.

account_numberstring required

Account number for the account.

symbolstring required
quantitystring required

String representation of quantity.

average_costnumber double required

The average cost of the position.

Example response

{
  "account_id": "100000",
  "account_number": "ACC0001",
  "symbol": "AAPL",
  "quantity": "100"
}