/v1/screener
Major/cross pairs ranked by absolute z-score
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/fxzscore-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxzscore-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxzscore-api/v1/screener");
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/fxzscore-api/v1/screener",
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": {
"note": "Major and cross FX pairs ranked by absolute z-score (most statistically stretched first). A high positive z-score is overbought (mean-reversion expects a fall); a low negative one is oversold. Use most_stretched for the headline opportunities.",
"pairs": [
{
"base": "USD",
"mean": 1.37257,
"pair": "USDCAD",
"rate": 1.39825,
"quote": "CAD",
"signal": "extremely overbought (mean-reversion: likely to fall)",
"std_dev": 0.01113,
"z_score": 2.31,
"window_low": 1.3492,
"window_high": 1.39825,
"observations": 100,
"pct_from_mean": 1.87
},
{
"base": "GBP",
"mean": 212.59558,
"pair": "GBPJPY",
"rate": 214.808,
"quote": "JPY",
"signal": "overbought",
"std_dev": 2.00443,
"z_score": 1.1,
"window_low": 207.728,
"window_high": 216.05499,
"observations": 100,
"pct_from_mean": 1.04
},
{
"base": "EUR",
"mean": 1.169,
"pair": "EURUSD",
"rate": 1.15808,
"quote": "USD",
"signal": "neutral / fair value",
"std_dev": 0.01254,
"z_score": -0.87,
"window_low": 1.14351,
"window_high": 1.20176,
"observations": 100,
"pct_from_mean": -0.93
}
],
"source": "Yahoo Finance",
"scanned": 3,
"window_days": 100,
"most_stretched": [
{
"pair": "USDCAD",
"signal": "extremely overbought (mean-reversion: likely to fall)",
"z_score": 2.31
},
{
"pair": "GBPJPY",
"signal": "overbought",
"z_score": 1.1
},
{
"pair": "EURUSD",
"signal": "neutral / fair value",
"z_score": -0.87
}
],
"oversold_count": 0,
"overbought_count": 2
},
"meta": {
"timestamp": "2026-06-12T10:35:26.631Z",
"request_id": "96e7b428-2040-4b56-b02d-a78cf559b310"
},
"status": "ok",
"message": "Screener retrieved successfully",
"success": true
}