Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/multiassetmomentum-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "screener class= filters by class. asset= is a supported key (see /v1/universe). alignment_score = (timeframes up) minus (timeframes down) over 1w/1m/3m/6m/12m. Read fresh per call, nothing cached.",
        "source": "Yahoo Finance daily closes (1y range) across a multi-asset universe, live",
        "classes": [
            "equities",
            "sector",
            "commodities",
            "bonds",
            "crypto"
        ],
        "service": "multiassetmomentum-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/asset": "One market's multi-timeframe momentum card (asset=sp500).",
            "GET /v1/screener": "Cross-asset board with fully aligned trends, ranked by alignment score (class=sector optional).",
            "GET /v1/universe": "The supported instruments."
        },
        "timeframes": [
            "1w",
            "1m",
            "3m",
            "6m",
            "12m"
        ],
        "description": "Multi-timeframe momentum & alignment (multi-asset) — whether each market is trending the same way across 1w/1m/3m/6m/12m, live from Yahoo Finance (no key, nothing stored). screener returns the fully aligned uptrends and downtrends across a cross-asset board ranked by alignment. asset returns one market's multi-timeframe momentum card with the alignment score (-5 to +5) and coherence. universe lists what is covered. The cross-asset multi-timeframe momentum / alignment cut — distinct from the crypto-only multi-timeframe API, the commodity-momentum ranking and the relative-strength APIs.",
        "universe_size": 21,
        "assets_scanned": 21,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:02.704Z",
        "request_id": "177f2735-17eb-465b-bd25-c0f7c17d96c0"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}