Exchange Rate
This endpoint is used to get the exchange rate
This endpoint is used to get both buy and sell rates between the fiat and crypto pair e.g. NGN-> USDT or USDT->NGN.
POST
https://exchanger-api.fuspay.finance/api/v1/no-auth/Axis/ExchangeRate/
Headers
Authorization*
String
Bearer ${partner_secret_key}
Content-Type*
String
application/json
x-partner-id*
String
Your partner ID eg. p602xxx
Request Body
fiat*
String
this is the fiat of the currency pair eg "NGN"
chain
String
eg "eusd-mob", "usdt-trc". The chain determines the stable coin If the chain value is empty rate sent will be for USDT
Request Body
// Sample body request
{
"fiat":"NGN",
"chain": "usdt-trc"
}
Response
{
success: true,
message: string,
data: {
"NGN/USDT": 1700,
"USDT/NGN": 1670
}
}
"FIAT(NGN)/STABLE_COIN(USDT)": "This notation means you are buying the stable coin at the rate shown"
"STABLE_COIN(USDT)/FIAT(NGN)": "This notation means you are selling the fiat at the rate shown"
Last updated
Was this helpful?