Skip to content

Symbol Information

Get spot specified instrument information

Http Request

GET
/api/spot/instruments/trade_pair_one

Request Frequency Restriction:

  • 1times / 1second

Postman

pay attention to replace "restful_base_endpoint"

curl --location 'restful_base_endpoint/api/spot/instruments/trade_pair_one?instrument_id=BTC/USDT'

Request Parameters

Name Type Mandatory Description
instrument_id string YES currency pair name, such as BTC/USDT.

Response fields description

Name Type Description
trade_pair_name string currency pair name, such as BTC/USDT
base_asset string underlying assets, such as BTC
quote_asset string valuation assets, such as USDT
price_precision string price precision
amount_precision string quantity precision
taker_fee_rate string taker fee rate
maker_fee_rate string maker fee rate
min_amount string minimum number of delegates
price_fluctuation string price fluctuation limit
min_notional string

Response

{
  "code": 200,
  "message": null,
  "data": {
    "trade_pair_name": "BTC/USDT",
    "base_asset": "BTC",
    "quote_asset": "USDT",
    "price_precision": "2",
    "amount_precision": "4",
    "taker_fee_rate": "0.001",
    "maker_fee_rate": "0.001",
    "min_amount": "0.0001",
    "price_fluctuation": "0.20",
    "min_notional": "10"
  }
}