/v1/chain
Convert an amount along a path of pairs
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/fxcross-api/v1/chain" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxcross-api/v1/chain", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxcross-api/v1/chain");
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/fxcross-api/v1/chain",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"hops": [
{
"pair": "EUR/USD",
"rate": 1.08,
"to_amount": 1080,
"from_amount": 1000,
"to_currency": "USD",
"from_currency": "EUR"
},
{
"pair": "USD/JPY",
"rate": 150,
"to_amount": 162000,
"from_amount": 1080,
"to_currency": "JPY",
"from_currency": "USD"
}
],
"path": "EUR -> USD -> JPY",
"source": "FX-CROSS",
"final_amount": 162000,
"start_amount": 1000,
"effective_rate": 162,
"final_currency": "JPY",
"start_currency": "EUR"
},
"meta": {
"timestamp": "2026-06-11T07:49:27.931Z",
"request_id": "f38d62ed-930e-4e91-b297-d5a2ef15c5be"
},
"status": "ok",
"message": "Conversion chain computed",
"success": true
}