Skip to main content
GET
/
v1
/
accounts
/
{id}
/
orders
Get Account Orders
curl --request GET \
  --url https://api.aries.com/v1/accounts/{id}/orders \
  --header 'Authorization: Bearer <token>'
[
  {
    "avgPrice": "<string>",
    "id": 123,
    "instrument": "<string>",
    "limitPrice": "<string>",
    "orderAction": "<string>",
    "orderRejectionReason": "<string>",
    "postEffect": "<string>",
    "quantity": "<string>",
    "quantityFilled": "<string>",
    "status": "<string>",
    "sterlingOrderId": "<string>",
    "stopPrice": "<string>",
    "submittedAt": "2023-11-07T05:31:56Z",
    "symbol": "<string>",
    "tradeAction": "<string>",
    "type": "<string>",
    "updatedAt": "2023-11-07T05:31:56Z",
    "userId": 123
  }
]

Authorizations

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

Query Parameters

limit
integer<int64>
default:0

Maximum number of orders to return (0 = no limit)

Required range: x >= 0

Response

Account orders retrieved successfully

avgPrice
string

Average fill price

id
integer<int64>

Internal order ID

instrument
string

Financial instrument type

limitPrice
string

Limit price for limit orders

orderAction
string

Order action type

orderRejectionReason
string

Reason for order rejection if applicable

postEffect
string

Post-trade effect

quantity
string

Order quantity

quantityFilled
string

Quantity filled

status
string

Order status

sterlingOrderId
string

Sterling order identifier

stopPrice
string

Stop price for stop orders

submittedAt
string<date-time>

When order was submitted

symbol
string

Trading symbol

tradeAction
string

Trade action (buy, sell)

type
string

Order type (market, limit, etc.)

updatedAt
string<date-time>

When order was last updated

userId
integer<int64>

User ID who placed the order