/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/fxmovers-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxmovers-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxmovers-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/fxmovers-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Parameter-less movers; pair= takes a supported pair. Changes are over 1, ~5 and ~21 trading days. Read fresh per call, nothing cached.",
"source": "Yahoo Finance daily FX rates (1-month range), live",
"service": "fxmovers-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/pair": "One pair's performance card (pair=EURUSD).",
"GET /v1/pairs": "The supported FX pairs.",
"GET /v1/movers": "All pairs ranked by daily change with weekly/monthly leaders."
},
"description": "Forex movers & performance — what is moving in the currency market now, live from Yahoo Finance (no key, nothing stored). movers returns the whole board ranked by daily change (top gainers and losers) plus the weekly and monthly leaders. pair returns one pair's full performance card (day/week/month change, day high/low, range position). pairs lists what is covered. The FX movers / performance-dashboard cut — distinct from the currency-strength meter (which aggregates each currency into one score), the FX price, range and volatility APIs.",
"pairs_scanned": 28,
"pairs_supported": 28,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T10:35:16.555Z",
"request_id": "1ebe662a-e749-4eab-b526-906d647c64e9"
},
"status": "ok",
"message": "Meta",
"success": true
}