Skip to main content

Get Estimated Amount

GET getEstimatedAmount

This endpoint allows you to estimate the amount received when exchanging between two currencies.

HTTP Request

https://interface.flashift.app/api/dev/v1/getEstimatedAmount

Request

Header Parameters

NameTypeRequiredDescription
AuthorizationstringYesYour API Key
AcceptstringYesSet this to application/json

Request Parameters

NameTypeRequiredDescription
currency_fromstringYesThe currency you are exchanging from (e.g., BTC)
currency_tostringYesThe currency you are exchanging to (e.g., XMR)
amountstringYesThe amount of the currency you are exchanging from

Response

Sample Response

application/json
{
"message": "OK",
"data": [
{
"provider_name": "EasyBit",
"exchange_type": "floating",
"amount": "9707.965197",
"min_amount": "0.0004",
"max_amount": "61.45",
"tags": [
"Recommended",
"AI Best Rate",
"Best Rate"
]
},
{
"provider_name": "Exolix",
"exchange_type": "floating",
"amount": "9671.93507",
"min_amount": "0.00050126",
"max_amount": null,
"tags": [
"Best In KYC"
]
}
]
}