Skip to main content
GET
/
api
/
quotes
/
fiat-to-stablecoin
/
all
Get All Fiat-to-Stablecoin Quotes
curl --request GET \
  --url https://api.teel.finance/api/quotes/fiat-to-stablecoin/all
[
  {
    "protocol": "rt_5Tn1bQp8w2k",
    "fromCcy": "USD",
    "toCcy": "USDC",
    "fromAmount": 1000,
    "toAmount": 998.50,
    "exchangeRate": 1.0,
    "effRate": 0.9985,
    "fee": 1.50,
    "isCryptoQuote": true,
    "swapPath": "USD -> USDC"
  },
  {
    "protocol": "rt_8QmVxT2pA9c",
    "fromCcy": "USD",
    "toCcy": "USDC",
    "fromAmount": 1000,
    "toAmount": 995.00,
    "exchangeRate": 1.0,
    "effRate": 0.995,
    "fee": 5.00,
    "isCryptoQuote": true,
    "swapPath": "USD -> USDC"
  }
]
Returns an array of quotes from every connected provider for converting fiat currency into a stablecoin. Useful for comparing rates and swap paths across providers.

Query Parameters

source_currency
string
required
ISO 4217 currency code for the source fiat currency (e.g. USD, EUR).
target_token
string
required
The target stablecoin token symbol (e.g. USDC, USDT).
amount
number
required
The amount in the source fiat currency to convert.

Response

Returns an array of stablecoin quote objects.
quotes
array
[
  {
    "protocol": "rt_5Tn1bQp8w2k",
    "fromCcy": "USD",
    "toCcy": "USDC",
    "fromAmount": 1000,
    "toAmount": 998.50,
    "exchangeRate": 1.0,
    "effRate": 0.9985,
    "fee": 1.50,
    "isCryptoQuote": true,
    "swapPath": "USD -> USDC"
  },
  {
    "protocol": "rt_8QmVxT2pA9c",
    "fromCcy": "USD",
    "toCcy": "USDC",
    "fromAmount": 1000,
    "toAmount": 995.00,
    "exchangeRate": 1.0,
    "effRate": 0.995,
    "fee": 5.00,
    "isCryptoQuote": true,
    "swapPath": "USD -> USDC"
  }
]