Skip to main content

Get Trades

GET 

/v1/markets/:market_id/trades

GET the current matches of bid and ask by market ID.

Request

Path Parameters

    market_id stringrequired

    Market identification.

Query Parameters

    time string

    Timestamp of when the trade matched.

    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.

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.

    side string

    Possible values: [BUY, SELL]

    Used to determine the trade agressor. BUY: Identifies an ask that was removed from the order book. SELL: Identifies a bid that was removed from the order book.

    quote_size string

    Executed size in the quote currency.

    string
  • ]
Loading...