Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/cci-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/cci-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cci-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cci-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/cci-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "screener class= filters by class. asset= is a supported key (see /v1/universe). CCI = (typical price - SMA20) / (0.015 * mean deviation). Read fresh per call, nothing cached.",
        "source": "Yahoo Finance daily OHLC (3mo range) across a multi-asset universe, live",
        "classes": [
            "equities",
            "sector",
            "commodities",
            "bonds",
            "crypto"
        ],
        "service": "cci-api",
        "settings": {
            "period": 20,
            "oversold": -100,
            "overbought": 100
        },
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/asset": "One market's CCI card (asset=sp500).",
            "GET /v1/screener": "Cross-asset board with overbought/oversold CCI extremes, ranked (class=sector optional).",
            "GET /v1/universe": "The supported instruments."
        },
        "description": "CCI screener (multi-asset) — which markets are stretched to an overbought or oversold extreme on the Commodity Channel Index, live from Yahoo Finance (no key, nothing stored). screener returns the overbought (>+100) and oversold (<-100) markets across a cross-asset board, ranked by CCI. asset returns one market's CCI card. universe lists what is covered. The cross-asset CCI / extension screener cut — distinct from the bring-your-own-candle oscillator API, the RSI screener, the OBV/volume and Bollinger screeners.",
        "universe_size": 21,
        "assets_scanned": 21,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:00.074Z",
        "request_id": "8287856d-fe7f-4617-bfe6-18e075a19e74"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}