Trading Pairs List
Address/openApi/market/symbols
Receiving parameter
Submit
Example
curl -d /openApi/market/symbols
Return parameter
ParamName |
Y/N |
Type |
Example |
Description |
errno |
Yes |
int |
0 |
Status code |
errmsg |
Yes |
success |
success |
Status information |
result |
Yes |
list |
See the example |
List |
RESULT parameter instructions
ParamName |
Y/N |
Type |
Example |
Description |
id |
Yes |
int |
11 |
Trading Pair ID |
symbol |
Yes |
string |
BTC-USDT |
Trading Pair Name |
base_currency |
Yes |
string |
BTC |
Trading Currencies |
quote_currency |
Yes |
string |
USDT |
Valuation Currencies |
min_size |
Yes |
float |
0.0000001 |
Minimum Trading Volume |
max_size |
Yes |
float |
10000 |
Maximum Trading Volume |
min_price |
Yes |
float |
0.001 |
Minimum Trading Price |
max_price |
Yes |
float |
1000 |
Maximum Trading Price |
maker_fee |
Yes |
float |
0.002 |
Maker fees,value range is 0~1,such as (0.1 is 10%) |
taker_fee |
Yes |
float |
0.002 |
Taker fees,value range is 0~1,such as (0.01 is 1%) |
Return example
{
"errno": 0,
"errmsg": "success",
"result": [
{
"id":1223,
"symbol": "BTC-USDT",
"base_currency": "BTC",
"quote_currency": "USDT",
"min_size": 0.0000001,
"max_size": 10000,
"min_price": 0.001,
"max_price":1000,
"maker_fee":0.002,
"taker_fee":0.002
},
{
"id":1223,
"symbol": "EOS-USDT",
"base_currency": "EOS",
"quote_currency": "USDT",
"min_size": 0.0000001,
"max_size": 10000,
"min_price": 0.001,
"max_price":1000,
"maker_fee":0.002,
"taker_fee":0.002
},
]
}
Comments
0 comments
Article is closed for comments.