Skip to main content
GET
/
api
/
quotes
/
fiat-to-fiat
/
best
Get Best Fiat-to-Fiat Quote
curl --request GET \
  --url https://api.teel.finance/api/quotes/fiat-to-fiat/best
{
  "fromCcy": "USD",
  "toCcy": "MXN",
  "fromAmount": 1000,
  "toAmount": 17250.50,
  "exchangeRate": 17.35,
  "effRate": 17.25,
  "provider": "conduit",
  "fee": 5.00
}
Returns the single best quote (lowest effective rate) across all connected providers for converting one fiat currency to another.

Query Parameters

source_currency
string
required
ISO 4217 currency code for the source currency (e.g. USD, EUR, GBP).
target_currency
string
required
ISO 4217 currency code for the target currency (e.g. MXN, NGN, BRL).
amount
number
required
The amount in the source currency to convert.

Response

fromCcy
string
Source currency code.
toCcy
string
Target currency code.
fromAmount
number
Amount in the source currency.
toAmount
number
Amount the recipient will receive in the target currency.
exchangeRate
number
The raw exchange rate before fees.
effRate
number
The effective exchange rate after fees are applied.
provider
string
The provider offering this quote.
fee
number
Total fee charged for the conversion.
{
  "fromCcy": "USD",
  "toCcy": "MXN",
  "fromAmount": 1000,
  "toAmount": 17250.50,
  "exchangeRate": 17.35,
  "effRate": 17.25,
  "provider": "conduit",
  "fee": 5.00
}