Skip to main content

Get Fills

GET 

/v1/trade/fills

List your fills (complete or partial matches of orders).

Requires authentication.

Request

Query Parameters

    cursor string

    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.

    limit integer

    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 string

    Market of the order that generated this match.

    time string

    Timestamp of when this matching has occurred.

Responses

OK

Schema
    result object[]
  • Array [
  • id string

    Trade identification.

    time integer

    Timestamp of when the trade matched.

    price string

    Executed price.

    size string

    Executed size.

    fee string

    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.

    fee_currency string

    Currency in which the fee is being charged.

    side string

    Trade match side.

    order_id string

    Order identification.

    order_custom_id string

    A unique identification send by customer. Can be used to retrieve the order in place of the order id.

    market string

    Market of the order that generated this match.

  • ]
Loading...