Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/fxmovers-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

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