Skip to main content

Get Trading Pair List

Query for the list of coins you can convert to/from.

HTTP Request

GET /v5/fiat/query-coin-list

Request Parameters

ParameterRequiredTypeComments
sidefalseinteger0: buy, buy crypto sell fiat; 1: sell, sell crypto buy fiat

Response Parameters

ParameterTypeComments
fiatsarrayFiat coin list
> coinstringFiat coin code
> fullNamestringFiat full coin name
> iconstringCoin icon url
> iconNightstringCoin icon url (dark mode)
> precisionintegerFiat precision
> disablebooleantrue: the coin is disabled, false: the coin is allowed
> singleFromMinLimitstringFor buy side, the minimum amount of fiatCoin per transaction
> singleFromMaxLimitstringFor buy side, the maximum amount of fiatCoin per transaction
cryptosarrayCrypto coin list
> coinstringFiat coin code
> fullNamestringFiat full coin name
> iconstringCoin icon url
> iconNightstringCoin icon url (dark mode)
> precisionintegerFiat precision
> disablebooleantrue: the coin is disabled, false: the coin is allowed
> singleFromMinLimitstringFor sell side, the minimum amount of cryptoCoin per transaction
> singleFromMaxLimitstringFor sell side, the maximum amount of cryptoCoin per transaction

Request Example

GET /v5/fiat/query-coin-list?side=0 HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1720064061248
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"fiats": [
{
"coin": "GEL",
"fullName": "Georgian Lari",
"icon": "https://s1.bycsi.com/common-static/wove/fiat-admin/2023-5-4/Tyoe=GEL.svg",
"iconNight": "https://s1.bycsi.com/common-static/wove/fiat-admin/2023-5-4/Tyoe=GEL.svg",
"precision": 2,
"disable": false,
"singleFromMinLimit": "10",
"singleFromMaxLimit": "100000"
}
],
"cryptos": [
{
"coin": "USDT",
"fullName": "Tether USDT",
"icon": "https://s1.bycsi.com/common-static/wove/fiat-admin/2024-8-5/8e50959d5f3e45bebf522e0cad456439_1726814031848.svg",
"iconNight": "https://s1.bycsi.com/common-static/wove/fiat-admin/2024-8-5/8e50959d5f3e45bebf522e0cad456439_1726814031848.svg",
"precision": 4,
"disable": false,
"singleFromMinLimit": "10",
"singleFromMaxLimit": "10000"
},
{
"coin": "BTC",
"fullName": "Bitcoin",
"icon": "https://s1.bycsi.com/common-static/wove/fiat-admin/20d09e76a0ab401f80bd545ae874c6a3_48x48.svg",
"iconNight": "https://s1.bycsi.com/common-static/wove/fiat-admin/20d09e76a0ab401f80bd545ae874c6a3_48x48.svg",
"precision": 8,
"disable": false,
"singleFromMinLimit": "0.0001",
"singleFromMaxLimit": "1"
},
{
"coin": "ETH",
"fullName": "Ethereum",
"icon": "https://s1.bycsi.com/common-static/wove/fiat-admin/40b217058a474e17b5d88653b039055c_48x48.svg",
"iconNight": "https://s1.bycsi.com/common-static/wove/fiat-admin/40b217058a474e17b5d88653b039055c_48x48.svg",
"precision": 8,
"disable": false,
"singleFromMinLimit": "0.002",
"singleFromMaxLimit": "5"
}
]
}
}