Skip to content
GET /v1/meta

Service metadata

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

Example response

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

{
    "data": {
        "as_of": "2026-06-08",
        "source": "ECB daily reference rates via Frankfurter (live)",
        "methods": [
            "classic",
            "fibonacci"
        ],
        "periods": [
            "weekly",
            "monthly"
        ],
        "service": "fxpivots-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/scan": "Scan a basket vs a base for pivot/bias (base=USD, period=).",
            "GET /v1/pivots": "A pair's pivot levels (base=EUR&quote=USD, period=weekly|monthly): classic + fibonacci, current bias."
        },
        "description": "Live FX pivot points (support/resistance) from ECB reference rates (Frankfurter): for any currency pair, the central pivot P plus R1–R3 and S1–S3 in Classic and Fibonacci methods, computed from the prior completed week's or month's high/low/close, with the current rate, its bullish/bearish bias and the nearest level above and below. Get a pair's pivots or scan a basket. Live, no key. Distinct from rate, strength, volatility, correlation, signal, range, seasonality and drawdown APIs — this is the pivot-point S/R map.",
        "scan_basket": [
            "USD",
            "EUR",
            "JPY",
            "GBP",
            "AUD",
            "CAD",
            "CHF",
            "NZD"
        ]
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:48.516Z",
        "request_id": "888ace2d-5c5a-44d4-a3f0-2362a51d086e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}