/v1/scan
Scan a basket vs a base for setups
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/fxsignals-api/v1/scan" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxsignals-api/v1/scan", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxsignals-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/fxsignals-api/v1/scan",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"base": "USD",
"as_of": "2026-06-08",
"count": 7,
"signals": [
{
"pair": "USDGBP",
"quote": "GBP",
"score": 3,
"trend": "uptrend",
"rsi_14": 55.34,
"verdict": "bullish",
"momentum_10d_pct": 1.02
},
{
"pair": "USDEUR",
"quote": "EUR",
"score": 3,
"trend": "uptrend",
"rsi_14": 63.5,
"verdict": "bullish",
"momentum_10d_pct": 0.89
},
{
"pair": "USDCAD",
"quote": "CAD",
"score": 2,
"trend": "uptrend",
"rsi_14": 79.17,
"verdict": "bullish",
"momentum_10d_pct": 0.9
},
{
"pair": "USDJPY",
"quote": "JPY",
"score": 2,
"trend": "uptrend",
"rsi_14": 71.98,
"verdict": "bullish",
"momentum_10d_pct": 0.65
},
{
"pair": "USDCHF",
"quote": "CHF",
"score": 1,
"trend": "downtrend",
"rsi_14": 60.2,
"verdict": "neutral",
"momentum_10d_pct": 1.87
},
{
"pair": "USDAUD",
"quote": "AUD",
"score": 1,
"trend": "downtrend",
"rsi_14": 57.39,
"verdict": "neutral",
"momentum_10d_pct": 1.33
},
{
"pair": "USDNZD",
"quote": "NZD",
"score": 0,
"trend": "downtrend",
"rsi_14": 52.11,
"verdict": "neutral",
"momentum_10d_pct": 0.75
}
]
},
"meta": {
"timestamp": "2026-06-09T03:03:29.873Z",
"request_id": "52ba664c-077c-4379-ac47-f1ac181a0ace"
},
"status": "ok",
"message": "Scan retrieved successfully",
"success": true
}