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

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/fxvolatility-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxvolatility-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxvolatility-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/fxvolatility-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": {
        "method": "annualised stdev of daily log returns, 252 trading days",
        "source": "ECB daily reference rates via Frankfurter (live)",
        "periods": [
            "1m",
            "3m",
            "6m",
            "1y"
        ],
        "service": "fxvolatility-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/pair": "Realised annualised volatility + return stats for a pair (base=EUR&quote=USD, period=).",
            "GET /v1/currency": "One currency's average volatility, rank and per-pair vols (code=TRY, period=).",
            "GET /v1/volatility": "Rank currencies by average pairwise annualised volatility (period=1m|3m|6m|1y)."
        },
        "description": "Live FX realised-volatility analytic from ECB reference rates (Frankfurter): annualised volatility (stdev of daily log returns) for any currency pair, plus a basket ranking of currencies by average pairwise volatility. Live, no key. Distinct from raw-rate and currency-strength APIs.",
        "currencies_live": 30
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:41.563Z",
        "request_id": "9d4435cd-0a43-4469-a7ce-f735e50c9189"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}