Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/fxmovers-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}