/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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"e=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
}