Skip to main content
GET
/
api
/
quotes
/
fiat-to-fiat
/
all
Get All Fiat-to-Fiat Quotes
curl --request GET \
  --url https://api.teel.finance/api/quotes/fiat-to-fiat/all
[
  {
    "fromCcy": "USD",
    "toCcy": "MXN",
    "fromAmount": 1000,
    "toAmount": 17250.50,
    "exchangeRate": 17.35,
    "effRate": 17.25,
    "provider": "conduit",
    "fee": 5.00
  },
  {
    "fromCcy": "USD",
    "toCcy": "MXN",
    "fromAmount": 1000,
    "toAmount": 17100.00,
    "exchangeRate": 17.30,
    "effRate": 17.10,
    "provider": "lemonado",
    "fee": 8.50
  }
]
Returns an array of quotes from every connected provider for converting one fiat currency to another. Useful for comparing rates across providers.

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

Returns an array of quote objects.
quotes
array
[
  {
    "fromCcy": "USD",
    "toCcy": "MXN",
    "fromAmount": 1000,
    "toAmount": 17250.50,
    "exchangeRate": 17.35,
    "effRate": 17.25,
    "provider": "conduit",
    "fee": 5.00
  },
  {
    "fromCcy": "USD",
    "toCcy": "MXN",
    "fromAmount": 1000,
    "toAmount": 17100.00,
    "exchangeRate": 17.30,
    "effRate": 17.10,
    "provider": "lemonado",
    "fee": 8.50
  }
]