Skip to main content

List Markets

GET 

/v1/markets

List data of asset pairs available for trading.

Request

Query Parameters

    expand string

    Possible values: [PRICES]

    Add a extra content to current response. It is necessary one key/value pair for each extra content. Ex: ?expand=CONTENT_1&expand=CONTENT_2

    order_book_max_depth int32

    Possible values: non-empty and <= 100 characters, >= 1 and <= 100

    When expanding ORDERBOOK, set the orderbook max depth. Default: 20.

    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

    Identification of a pair of assets to be traded.

    base_currency string

    The left side of the pair. It is the currency that will be aquired by paying with quote currency; or received when selling.

    quote_currency string

    The right side of the pair. It is the currency that will be payed to aquire the base currency; or payed when buying.

    minimum_order_size string

    Minimum necessary asset amount to create an order.

    increment_size string

    Minimum amount necessary to increment the order size.

    price_increment_size string

    Minimum amount necessary to increment the order price.

    market_order_tolerance number

    In percentage.

    If the size of your order were larger than the size of the order on top of the book, your order will match with more than one order to fill the requested amount.

    In this case, the system stops matching new orders if the value of these orders were greater than the value of the first order at the top of the book (when your order started to fill) plus the tolerance percentage of this field. Ex: best price on top of the book: 100 USD, "market_tolerance_order": 10, maximum price to be matched: 110 USD.

    enabled boolean

    If this market is enabled to trade.

  • ]
Loading...