Rate
Get Order Rate
The Get Order Rate GET
endpoint gets the lowest possible exchange rate for an order placed by a consumer from a provider. This requires your publickey
in the environment variables while the query params passed will be the payInCurrencyCode
, payInCurrencyNetwork
,recieveInCurrencyCode
, recieveInCurrencyNetwork
& orderAmount
.
The returned result will have a rateValidityInSeconds
, providerRateAmount
& providerRateReference
. To get a response for a sell or swap order, switch to desired networks and currency inputs on request and make the call. See the example below;
.../Rate?payInCurrencyCode=NGN&payInCurrencyNetwork=LOCAL&receiveInCurrencyCode=BUSD&receiveInCurrencyNetwork=BEP20&orderAmount=500
GET
https://canary.xendbridge.com/api/PeerToPeerOrder...
Query Parameters
payInCurrencyCode*
string
NGN
payInCurrencyNetwork*
string
LOCAL
recieveInCurrencyCode*
string
BUSD
recieveInCurrencyNetwork*
string
BEP-20
orderAmount*
decimal
500
Headers
publicKey
string
{your_publicKey}
payInCurrencyCode
string
Required
The currency to be paid in.
payInCurrencyNetwork
string
Required
The network of the currency to be paid in.
receiveInCurrencyCode
string
Required
The currency to be received in.
receiveInCurrencyNetwork
string
Required
The network of the currency to be receieved in.
orderAmount
string
Required
The amount of the order.
Last updated