Get OTC Markets
GETπ Public
Get OTC markets.
This API can be publicly accessed (without any security headers) to get the result.
If you access with Read permission authentication, the result will be much more accurate by account setting.
When requesting a quote, the request size should be in the associated range:
- If using
baseSize, it should be in the range of [minBaseSize,maxBaseSize). - If using
quoteSize, it should be in the range of [minQuoteSizes[i],maxQuoteSizes[i]].
Response Contentβ
| Name | Type | Description |
|---|---|---|
| asset | String | Asset |
| minBaseSize | String | Minimum base currency size |
| maxBaseSize | String | Maximum base currency size |
| quoteCurrencies | String[] | Supported quote currencies |
| minQuoteSizes | String[] | Minimum size per quote currency (matches quoteCurrencies order) |
| maxQuoteSizes | String[] | Maximum size per quote currency (matches quoteCurrencies order) |
example
GET
https://api.btse.com/public-api/otc/v1/marketsResponse
{
"success": true,
"code": 1,
"msg": "Success",
"time": 1624989977940,
"data": [
{
"asset": "BTC",
"minBaseSize": "1.0",
"maxBaseSize": "539236.0",
"quoteCurrencies": [
"USDT",
"ETH",
"DOGE"
],
"minQuoteSizes": [
"0.1",
"0.000029",
"0.69604"
],
"maxQuoteSizes": [
"2500000",
"287",
"6960396"
]
}
]
}