Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/fxmovers-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

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