Skip to main content
GET
/
api
/
quotes
/
offramp
/
all
Get All Offramp Quotes
curl --request GET \
  --url https://api.teel.finance/api/quotes/offramp/all
{
  "success": true,
  "data": [
    { "protocol": "rt_9XbN2kQ", "fromToken": "USDC", "toCcy": "PHP", "fromAmount": 1000, "toAmount": 56800.00, "rate": 56.8, "fee": 2.5 },
    { "protocol": "rt_3FpL7dM", "fromToken": "USDC", "toCcy": "PHP", "fromAmount": 1000, "toAmount": 56750.00, "rate": 56.75, "fee": 3.0 }
  ]
}
Returns all available offramp quotes for converting crypto into fiat, one per route. Supports both forward mode (you specify the crypto input) and exact-output mode (you specify the fiat the recipient must receive).

Query Parameters

payout_currency
string
required
ISO 4217 currency code for the desired fiat payout currency (e.g. USD, PHP).
usdc_amount
number
Forward mode: the amount of crypto (USDC) to offramp. Provide either this or target_amount.
target_amount
number
Exact-output mode: the exact fiat amount the recipient must receive. Teel computes the crypto input (fee-on-input). Provide either this or usdc_amount.

Response

success
boolean
data
array
Array of offramp quote objects, each with the same shape as Get Best Offramp Quote. The protocol field is an opaque route token (rt_...) — see Route tokens.
{
  "success": true,
  "data": [
    { "protocol": "rt_9XbN2kQ", "fromToken": "USDC", "toCcy": "PHP", "fromAmount": 1000, "toAmount": 56800.00, "rate": 56.8, "fee": 2.5 },
    { "protocol": "rt_3FpL7dM", "fromToken": "USDC", "toCcy": "PHP", "fromAmount": 1000, "toAmount": 56750.00, "rate": 56.75, "fee": 3.0 }
  ]
}