Skip to content
GET /v1/scan

Scan a basket vs a base for pivot and bias

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/fxpivots-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/fxpivots-api/v1/scan" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxpivots-api/v1/scan", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxpivots-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/fxpivots-api/v1/scan",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "base": "USD",
        "as_of": "2026-06-08",
        "count": 7,
        "pairs": [
            {
                "r1": 0.86061,
                "s1": 0.85802,
                "bias": "bullish",
                "pair": "USDEUR",
                "pivot": 0.85953,
                "quote": "EUR",
                "current": 0.86655
            },
            {
                "r1": 160.0612,
                "s1": 159.46523,
                "bias": "bullish",
                "pair": "USDJPY",
                "pivot": 159.66389,
                "quote": "JPY",
                "current": 159.96534
            },
            {
                "r1": 0.74496,
                "s1": 0.7412,
                "bias": "bullish",
                "pair": "USDGBP",
                "pivot": 0.74361,
                "quote": "GBP",
                "current": 0.74835
            },
            {
                "r1": 1.4059,
                "s1": 1.39372,
                "bias": "bullish",
                "pair": "USDAUD",
                "pivot": 1.39919,
                "quote": "AUD",
                "current": 1.41343
            },
            {
                "r1": 1.3918,
                "s1": 1.38256,
                "bias": "bullish",
                "pair": "USDCAD",
                "pivot": 1.38612,
                "quote": "CAD",
                "current": 1.39367
            },
            {
                "r1": 0.79087,
                "s1": 0.78403,
                "bias": "bullish",
                "pair": "USDCHF",
                "pivot": 0.78667,
                "quote": "CHF",
                "current": 0.7961
            },
            {
                "r1": 1.71076,
                "s1": 1.68312,
                "bias": "bullish",
                "pair": "USDNZD",
                "pivot": 1.69233,
                "quote": "NZD",
                "current": 1.71508
            }
        ],
        "period": "weekly"
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:48.416Z",
        "request_id": "09717488-68c7-4649-895e-392647e3327d"
    },
    "status": "ok",
    "message": "Scan retrieved successfully",
    "success": true
}