List Markets
GET/v1/markets
List data of asset pairs available for trading.
Request
Query Parameters
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
Possible values: non-empty
and <= 100 characters
, >= 1
and <= 100
When expanding ORDERBOOK, set the orderbook max depth. Default: 20.
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.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- Array [
- ]
result object[]
Identification of a pair of assets to be traded.
The left side of the pair. It is the currency that will be aquired by paying with quote currency; or received when selling.
The right side of the pair. It is the currency that will be payed to aquire the base currency; or payed when buying.
Minimum necessary asset amount to create an order.
Minimum amount necessary to increment the order size.
Minimum amount necessary to increment the order price.
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.
If this market is enabled to trade.
{
"result": [
{
"id": "BTC-USD",
"base_currency": "BTC",
"quote_currency": "USD",
"minimum_order_size": "0.00001",
"increment_size": "0.00001",
"price_increment_size": "0.01",
"market_order_tolerance": 10,
"enabled": true
}
]
}
{
"result": [
{
"id": "BTC-USD",
"base_currency": "BTC",
"quote_currency": "USD",
"minimum_order_size": "0.00000001",
"increment_size": "0.00000001",
"price_increment_size": "0.01",
"market_order_tolerance": 10,
"enabled": true
},
{
"id": "ETH-USD",
"base_currency": "ETH",
"quote_currency": "USD",
"minimum_order_size": "0.00000001",
"increment_size": "0.00000001",
"price_increment_size": "0.01",
"market_order_tolerance": 10,
"enabled": true
},
{
"id": "USD-BRL",
"base_currency": "USD",
"quote_currency": "BRL",
"minimum_order_size": "0.001",
"increment_size": "0.001",
"price_increment_size": "0.001",
"market_order_tolerance": 10,
"enabled": true
}
]
}