/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/fxrange-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxrange-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxrange-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/fxrange-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)",
"periods": [
"1m",
"3m",
"6m",
"1y"
],
"service": "fxrange-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/scan": "Scan a basket vs a base for range position (base=USD, period=, near=high|low).",
"GET /v1/range": "A pair's high/low/current/percentile in its range (base=EUR"e=USD, period=1m|3m|6m|1y)."
},
"description": "Live FX range-position analytic from ECB reference rates (Frankfurter): for any currency pair, the period high/low (with dates), current rate, and percentile position in the range (0%=on the low, 100%=on the high) plus distance from each extreme. Get a pair's range or scan a basket for what's near its highs/lows. Live, no key. Distinct from rate, strength, volatility, correlation and signal APIs.",
"scan_basket": [
"USD",
"EUR",
"JPY",
"GBP",
"AUD",
"CAD",
"CHF",
"NZD"
]
},
"meta": {
"timestamp": "2026-06-09T03:03:20.816Z",
"request_id": "67bc6d43-b5a3-43a5-9f48-19dc338a08e3"
},
"status": "ok",
"message": "Meta",
"success": true
}