v1
latestOpenAPI 3.1.0UNLICENSED2026-07-26216788.0 KBTrades
GetUserFills
Returns individual trade-history records (fills) for one wallet, optionally scoped to a time range. Results are ordered oldest first (ascending by block time).
limit defaults to 100 and is capped at 500.
post/fill_history_service.v1.FillHistoryService/GetUserFills
Headers
Connect-Protocol-Version1 required
Define the version of the Connect protocol. If omitted, use 1.
Connect-Timeout-Msnumber
Define the timeout, in ms
Request body
Example request
{
"startTime": "2023-01-15T01:30:15.01Z",
"endTime": "2023-01-15T01:30:15.01Z"
}Response
Success
Example response
{
"fills": [
{
"timestamp": "2023-01-15T01:30:15.01Z"
}
]
}