Convert Range
ConvertRange
GET /range
Description
Get convertible asset range from all available convert makers
Request
Request Parameters
Name | Type | Require | Description | Example |
---|---|---|---|---|
from_asset | string | true | convert from asset symbol | "USDT" |
to_asset | string | true | convert 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 Name | Type | Description | Example |
---|---|---|---|
from_asset_max_amount | decimal | from asset max amount | "77654.92" |
from_asset_min_amount | decimal | from asset min amount | "10.06" |
to_asset_max_amount | decimal | to asset max amount | "0.748828" |
to_asset_min_amount | decimal | to asset min amount | "0.0000974" |