Skip to main content
GET
/
api
/
quotes
/
fiat-to-fiat
/
indicative
Get Indicative Fiat-to-Fiat Quote
curl --request GET \
  --url https://api.teel.finance/api/quotes/fiat-to-fiat/indicative
{
  "success": true,
  "data": {
    "protocol": "rt_2hVtQ7w",
    "fromCcy": "USD",
    "toCcy": "PHP",
    "fromAmount": 1000,
    "toAmount": 56700.00,
    "rate": 56.7,
    "fee": 5.0
  }
}
Returns a single indicative fiat-to-fiat route — a fast estimate suitable for display before a recipient or payment method is selected. Indicative quotes are not firm: they are not pinned to a payment-method context and should not be relied on for the exact settled amount. Use Get Best Fiat-to-Fiat Quote for a firm, executable quote.

Query Parameters

source_currency
string
required
ISO 4217 code for the currency you are sending from (e.g. USD).
target_currency
string
required
ISO 4217 code for the recipient’s currency (e.g. PHP).
amount
number
required
The amount in the source currency.

Response

success
boolean
data
object
The indicative route, or null when no route is available (a message field then explains why). The protocol field is an opaque route token (rt_...) — see Route tokens.
message
string
Present only when data is null (e.g. "No route available").
{
  "success": true,
  "data": {
    "protocol": "rt_2hVtQ7w",
    "fromCcy": "USD",
    "toCcy": "PHP",
    "fromAmount": 1000,
    "toAmount": 56700.00,
    "rate": 56.7,
    "fee": 5.0
  }
}
Indicative quotes omit firm-quote resolution (payment-method-specific pricing, provider fallbacks). The settled amount on a firm quote may differ.