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

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/goldencross-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/goldencross-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/goldencross-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/goldencross-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). Moving averages are simple 50- and 200-day. Read fresh per call, nothing cached.",
        "source": "Yahoo Finance daily closes (14mo range) across a multi-asset universe, live",
        "classes": [
            "equities",
            "sector",
            "commodities",
            "bonds",
            "crypto"
        ],
        "service": "goldencross-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/asset": "One market's moving-average card (asset=sp500).",
            "GET /v1/screener": "Cross-asset board with golden/death-cross regimes, fresh crosses and bullish/bearish tally (class=sector optional).",
            "GET /v1/universe": "The supported instruments."
        },
        "description": "Golden cross / death cross screener — which markets just flipped trend on the 50- vs 200-day moving-average cross, live from Yahoo Finance (no key, nothing stored). screener returns a cross-asset board with each market's golden/death-cross regime, the freshest crosses and the bullish/bearish tally. asset returns one market's moving-average card (price, 50/200 SMA, regime, days since cross, distance). universe lists what is covered. The moving-average-crossover / golden-cross screener cut — distinct from the bring-your-own-candle technical-indicator APIs, the market-breadth API and the FX-only signals API.",
        "universe_size": 20,
        "assets_scanned": 20,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:09.599Z",
        "request_id": "79355a67-d8e3-4fb1-857f-a4b817fcf54c"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}