List markets
GET/otc/markets/
List all available OTC markets.
Request
Responses
- 200
The list of all available OTC markets.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
markets object[]
base_asset string
The base asset of the market
quote_asset string
The quote asset of the market
price float
The current price in the market
min_amount float
The minimum tradable amount
max_amount float
The maximum tradable amount
{
"markets": [
{
"base_asset": "string",
"quote_asset": "string",
"price": 0,
"min_amount": 0,
"max_amount": 0
}
]
}
Loading...