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

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/macd-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/macd-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/macd-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/macd-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": "screener class= filters by class. asset= is a supported key (see /v1/universe). MACD is 12/26 EMA with a 9 EMA signal. Read fresh per call, nothing cached.",
        "source": "Yahoo Finance daily closes (9mo range) across a multi-asset universe, live",
        "classes": [
            "equities",
            "sector",
            "commodities",
            "bonds",
            "crypto"
        ],
        "service": "macd-api",
        "settings": {
            "fast": 12,
            "slow": 26,
            "signal": 9
        },
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/asset": "One market's MACD card (asset=sp500).",
            "GET /v1/screener": "Cross-asset board with fresh MACD crossovers, histogram ranking and bullish/bearish tally (class=sector optional).",
            "GET /v1/universe": "The supported instruments."
        },
        "description": "MACD screener (multi-asset) — which markets just triggered a MACD buy or sell signal, live from Yahoo Finance (no key, nothing stored). screener returns the fresh bullish and bearish MACD/signal crossovers across a cross-asset board plus the histogram ranking and bullish/bearish tally. asset returns one market's MACD card (MACD, signal, histogram, posture, days since cross). universe lists what is covered. The cross-asset MACD / momentum-crossover screener cut — distinct from the bring-your-own-candle technical-indicator APIs, the RSI, Bollinger and moving-average screeners and the FX-only signals API.",
        "universe_size": 21,
        "assets_scanned": 21,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:06.666Z",
        "request_id": "73e66b9b-c6e1-4446-8d46-a602c96048f2"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}