cURL
curl --request GET \ --url https://api.tradearies.dev/v1/accounts/{id}/positions \ --header 'Authorization: Bearer <token>' \ --header 'X-API-Key: <api-key>'
[ { "symbol": "<string>", "quantity": "<string>", "pnlToday": "<string>", "averagePrice": "<string>", "buyingPowerUsed": "<string>" } ]
Retrieve all positions for a specific account
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Account ID
Account positions retrieved successfully
The response is of type object[].
object[]
Was this page helpful?