Skip to main content
POST
GetUserFills

Authorizations

Authorization
string
header
required

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

Headers

Connect-Protocol-Version
enum<number>
default:1
required

Define the version of the Connect protocol. If omitted, use 1.

Available options:
1
Connect-Timeout-Ms
number

Define the timeout, in ms

Body

application/json
address
string | null
required

Wallet address to fetch fills for. A blank value returns INVALID_ARGUMENT.

startTime
string<date-time> | null

Optional inclusive lower bound on fill time. Omit to start from the earliest fill.

Example:

"2023-01-15T01:30:15.01Z"

endTime
string<date-time> | null

Optional exclusive upper bound on fill time. Omit to include up to the most recent fill.

Example:

"2023-01-15T01:30:15.01Z"

limit
integer | null

Maximum number of fills to return. Defaults to 100 when omitted; capped at 500.

offset
integer | null

Number of matching fills to skip before collecting results. Defaults to 0.

Response

200 - application/json

Success

fills
FillInstance · object[]

Matching fills, ordered oldest first.