/v1/quote
Price a bridge transfer — fees, output, fill time
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/across-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/across-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/across-api/v1/quote");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/across-api/v1/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"token": "USDC",
"amount": 1000,
"lp_fee": null,
"source": "Across",
"to_chain": "Arbitrum",
"total_fee": 0.104668,
"from_chain": "Ethereum",
"max_deposit": 727210.913536,
"min_deposit": 0.500056,
"output_amount": 999.895332,
"total_fee_pct": 0.010467,
"relayer_gas_fee": null,
"is_amount_too_low": false,
"max_deposit_instant": 98927.978056,
"relayer_capital_fee": null,
"estimated_fill_time_sec": 2
},
"meta": {
"timestamp": "2026-06-10T22:57:03.501Z",
"request_id": "c9fba07a-946d-4eee-8857-5afa5c2db19e"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}