Ir al contenido
GET /v1/meta

Service metadata and endpoint list

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

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/technicals-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/technicals-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/technicals-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/technicals-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": "Pass prices as a comma-separated list, oldest first (prices=44.34,44.09,44.15,...).",
        "source": "Computed in-process from caller-supplied prices (no upstream)",
        "service": "technicals-api",
        "endpoints": {
            "GET /v1/ma": "Simple or exponential moving average (prices=..., period=20, type=sma|ema).",
            "GET /v1/rsi": "Wilder RSI (prices=..., period=14).",
            "GET /v1/macd": "MACD line, signal and histogram (prices=..., fast=12, slow=26, signal=9).",
            "GET /v1/meta": "This document.",
            "GET /v1/bollinger": "Bollinger Bands + bandwidth & %B (prices=..., period=20, stddev=2)."
        },
        "description": "Live technical-analysis indicators computed on demand from the price series you pass in. The rsi endpoint returns Wilder's Relative Strength Index; the macd endpoint returns the MACD line, signal line and histogram; the bollinger endpoint returns the upper, middle and lower Bollinger Bands with bandwidth and %B; the ma endpoint returns a simple or exponential moving average. Computed live from your input, nothing stored — works for any market (forex, stocks, crypto, commodities). A technical-indicator engine, distinct from raw price feeds and from pivot/fibonacci level tools.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:27.794Z",
        "request_id": "4ebcb8ba-862e-4e50-b296-068e4cb2c588"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}