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

Authorizations

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

Path Parameters

id
string
required

Query Parameters

limit
integer
default:0
Required range: x >= 0

Response

id
integer
status
string
orderAction
string
userId
integer
sterlingOrderId
string
symbol
string
avgPrice
string
quantityFilled
string
postEffect
string
submittedAt
string<date-time>
updatedAt
string<date-time>
instrument
string
quantity
string
orderRejectionReason
string
type
string
tradeAction
string
stopPrice
string
limitPrice
string