Skip to main content

Convert Range

ConvertRange

GET /range

Description

Get convertible asset range from all available convert makers

Request

Request Parameters

NameTypeRequireDescriptionExample
from_assetstringtrueconvert from asset symbol"USDT"
to_assetstringtrueconvert to asset symbol"BTC"
  • support two http parameter transmission methods: application/json and query params
  • from_asset and to_asset should all be sent, and from_asset cannot be the same as to_asset
  • from_asset and to_asset both come from the asset list returned by ConvertAssets interface

Response

{
"from_asset_max_amount": "77654.92",
"from_asset_min_amount": "10.06",
"to_asset_max_amount": "0.748828",
"to_asset_min_amount": "0.000097"
}

Response Description

Attribute NameTypeDescriptionExample
from_asset_max_amountdecimalfrom asset max amount"77654.92"
from_asset_min_amountdecimalfrom asset min amount"10.06"
to_asset_max_amountdecimalto asset max amount"0.748828"
to_asset_min_amountdecimalto asset min amount"0.0000974"