Skip to main content
GET
Get Completed Orders

Authorizations

Authorization
string
header
required

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

Query Parameters

pageSize
integer
default:100

Maximum number of items per page, between 20 and 200. Defaults to 100.

Required range: 20 <= x <= 200
startDate
integer<int64>

This is a parameter to support querying by date. The value should be in the format of milliseconds since epoch. It can be used alone or in conjunction with the endDate parameter.

Required range: 1000000000000 <= x <= 9999999999999
endDate
integer<int64>

This is a parameter to support querying by date. The value should be in the format of milliseconds since epoch. It can be used alone or in conjunction with the startDate parameter.

Required range: 1000000000000 <= x <= 9999999999999
start
string

This is a parameter to support pagination. Get the value from the last field if present in the previous response.

Response

completedOrders
object[]
required

List of completed (filled) orders for the account, newest first, across all markets.

last
string

This is a field in the response to support pagination. Use this value if present for the start parameter of the following request to get the next page of results.