Exchange Info
Retrieve information of our exchange
GET
https://api.ajaib.co.id/coin/internal/v1/public/exchange-info
Functionality: Retrieves exchange information on our trading pairs
Authentication: Not Required
Request Param
NONE
Response Body
Name
Type
Description
base_asset
string
The base asset of trading pair.
base_precision
int
Number of precision (decimal points) supported.
quote_asset
string
The quote asset of trading pair.
quote_tick
decimal
The (minimum) tick size supported.
[
{
"symbol": "BTC_USDT",
"base_asset": "BTC",
"base_precision": 8,
"quote_asset": "USDT"
"quote_tick": 0.01,
},
{
"symbol": "ETH_USDT",
"base_asset": "ETH",
"base_precision": 6,
"quote_asset": "USDT"
"quote_tick": 0.01,
}
]
Last updated