/v1/scan
Scan a basket for range position
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/fxrange-api/v1/scan" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxrange-api/v1/scan", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxrange-api/v1/scan");
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/fxrange-api/v1/scan",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"base": "USD",
"as_of": "2026-06-08",
"count": 7,
"pairs": [
{
"low": 142.845047,
"high": 159.965338,
"pair": "USDJPY",
"quote": "JPY",
"current": 159.965338,
"percentile_pct": 100
},
{
"low": 0.835143,
"high": 0.876885,
"pair": "USDEUR",
"quote": "EUR",
"current": 0.866551,
"percentile_pct": 75.24
},
{
"low": 1.35244,
"high": 1.412983,
"pair": "USDCAD",
"quote": "CAD",
"current": 1.393674,
"percentile_pct": 68.11
},
{
"low": 0.723763,
"high": 0.76662,
"pair": "USDGBP",
"quote": "GBP",
"current": 0.748354,
"percentile_pct": 57.38
},
{
"low": 1.63624,
"high": 1.784722,
"pair": "USDNZD",
"quote": "NZD",
"current": 1.715078,
"percentile_pct": 53.1
},
{
"low": 0.767025,
"high": 0.822619,
"pair": "USDCHF",
"quote": "CHF",
"current": 0.796101,
"percentile_pct": 52.3
},
{
"low": 1.377995,
"high": 1.565812,
"pair": "USDAUD",
"quote": "AUD",
"current": 1.413432,
"percentile_pct": 18.87
}
],
"period": "1y"
},
"meta": {
"timestamp": "2026-06-09T03:03:20.726Z",
"request_id": "651cb903-0f14-41e1-89d3-0675a7d0d40e"
},
"status": "ok",
"message": "Scan retrieved successfully",
"success": true
}