Skip to main content

Get Reference Price

HTTP Request

GET /v5/fiat/reference-price

Request Parameters

ParameterRequiredTypeComments
symboltrueintegerCoin Pair, such as EUR-USDT

Response Parameters

ParameterTypeComments
resultarrayArray of quotes
> symbolstringTrading pair symbol
> fiatstringFiat currency of the trading pair (e.g: "EUR")
> cryptostringCryptocurrency of the trading pair (e.g:"USDT")
> timestampstringUnix timestamp
> buysarrayArray of buy quote objects
>> unitPricestringunitPrice: 1 crypto=x fiat
>> paymentMethodstringFrom coin type. fiat or crypto
> sellsayyarArray of sell quote objects
>> unitPricestringunitPrice: 1 crypto=x fiat
>> paymentMethodstringFrom coin type. fiat or crypto

Request Example

GET /v5/fiat/reference-price HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1720074159814
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "",
"result": {
"symbol": "EUR-USDT",
"fiat": "EUR",
"crypto": "USDT",
"timestamp": "1765181161",
"buys": [
{
"unitPrice": "0.8581",
"paymentMethod": "Cash Balance"
},
{
"unitPrice": "0.9297487",
"paymentMethod": "Credit Card"
},
{
"unitPrice": "0.9807915",
"paymentMethod": "Apple Pay"
},
{
"unitPrice": "0.8631747",
"paymentMethod": "Google Pay"
}
],
"sells": [
{
"unitPrice": "0.8581",
"paymentMethod": "Cash Balance"
},
{
"unitPrice": "0.9297487",
"paymentMethod": "Credit Card"
},
{
"unitPrice": "0.9807915",
"paymentMethod": "Apple Pay"
},
{
"unitPrice": "0.8631747",
"paymentMethod": "Google Pay"
},
{
"unitPrice": "0.8584759",
"paymentMethod": "SEPA"
}
]
}
}