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/fxzscore-api

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/fxzscore-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxzscore-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxzscore-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/fxzscore-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": "pair is a supported FX pair (EURUSD, GBPJPY, ...; see /v1/pairs). window is 20-250 trading days (default 100). z-score uses the sample mean and standard deviation of the window. Read fresh per call, nothing cached.",
        "source": "Yahoo Finance daily FX rates, live",
        "service": "fxzscore-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/pairs": "The supported FX pairs.",
            "GET /v1/zscore": "Z-score, mean, std-dev and overbought/oversold label for one pair (pair=EURUSD, window=100).",
            "GET /v1/screener": "All major/cross pairs ranked by absolute z-score, with overbought/oversold counts (window=100)."
        },
        "description": "FX z-score & mean-reversion — how statistically stretched each currency pair is versus its rolling average, live from Yahoo Finance (no key, nothing stored). zscore returns a pair's current rate, rolling mean and standard deviation, the z-score, percent from mean and an overbought/oversold label. screener ranks the major and cross pairs by how stretched they are. pairs lists what is covered. The statistical-stretch / mean-reversion cut for FX — distinct from the FX range, pivot-point, volatility and signals APIs. It answers how far from normal a pair is.",
        "eurusd_z_score": -0.87,
        "pairs_supported": 25,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:26.826Z",
        "request_id": "e6f43ae3-7d25-4fdf-b45b-2a4ee982dbab"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}