Body
The source currency code (e.g. ETH).
The target currency code (e.g. USDC).
Response
The unique ID of the locked quote.
The exact amount being sent.
The exact amount being received.
The conversion rate applied.
The fee for the conversion.
ISO-8601 timestamp for quote expiry (quotes are locked for 30 seconds).
curl -X POST "https://api.tavio.io/v1/quotes" \
-H "Authorization: Bearer tv_live_xxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"from_currency": "ETH",
"to_currency": "USDC",
"amount": 0.5,
"direction": "send"
}'
{
"quote_id": "qt_xyz789",
"from_amount": 0.5,
"to_amount": 1523.4,
"rate": 3046.8,
"fee": 4.57,
"expires_at": "2026-02-21T12:00:30Z"
}