Get Fills
GET/v1/trade/fills
List your fills (complete or partial matches of orders).
Requires authentication.
Request
Query Parameters
A reference to the server indicating the next set of objects to be returned. It is sent back in every response were the number of objects returned is bigger than the limit.
Possible values: non-empty
and <= 200 characters
, >= 1
and <= 200
Default value: 20
Max number of objects to be returned as result of request.
Market of the order that generated this match.
Timestamp of when this matching has occurred.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- Array [
- ]
result object[]
Trade identification.
Timestamp of when the trade matched.
Executed price.
Executed size.
Fee charged when this order matched. When it is a buy order, the currency of this fee is the currency of the base side of the traded pair. When it is sell, the currency is the same of the quote side of the pair.
Currency in which the fee is being charged.
Trade match side.
Order identification.
A unique identification send by customer. Can be used to retrieve the order in place of the order id.
Market of the order that generated this match.
{
"result": [
{
"id": "5789889537122403",
"time": 1675901055963852,
"price": "1650.0",
"size": "0.0002356",
"fee": "0.0038874",
"fee_currency": "BTC",
"side": "BUY",
"order_id": "446866913146962177",
"order_custom_id": "7766052b-16a5-49a3-a572-d75d6f5484d2",
"market": "BTC-USD"
}
]
}
{
"result": [
{
"id": "5789889537122403",
"time": 1675901055963852,
"price": "1650.0",
"size": "0.0002356",
"fee": "0.0038874",
"fee_currency": "BTC",
"side": "BUY",
"order_id": "446866913146962177",
"order_custom_id": "7766052b-16a5-49a3-a572-d75d6f5484d2",
"market": "BTC-USD"
}
]
}