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

Service metadata

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

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

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

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

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

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

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

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

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

{
    "data": {
        "note": "metric is hurst (default) or efficiency. window is 100-756 trading days (default 252; Hurst needs a long sample). class filters to equity/sector/commodity/bond/fx/crypto (default all). Read fresh per call, nothing cached.",
        "source": "Yahoo Finance daily closes, live",
        "classes": [
            "equity",
            "sector",
            "commodity",
            "bond",
            "fx",
            "crypto"
        ],
        "metrics": [
            "hurst",
            "efficiency"
        ],
        "service": "hurst-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/asset": "Hurst, efficiency ratio and regime for one instrument (symbol=SPY, window=252).",
            "GET /v1/screener": "Rank the universe by Hurst or efficiency ratio, most trending first (metric=hurst, window=252, class=all).",
            "GET /v1/universe": "The cross-asset universe and its classes."
        },
        "description": "Hurst exponent & market regime — tells you whether each market is trending, a random walk, or mean-reverting, live from Yahoo Finance daily closes (no key, nothing stored). The Hurst exponent (rescaled-range R/S analysis) above ~0.55 means persistent/trending (trend-following fits), near 0.5 a random walk, below ~0.45 anti-persistent/mean-reverting (fade extremes). The Kaufman efficiency ratio (net move / total path) is a second read on trend cleanliness. asset returns one instrument's Hurst, efficiency ratio and regime label; screener ranks the cross-asset universe from most trending to most mean-reverting. The persistence / trend-vs-mean-reversion regime cut — distinct from the z-score stretch gauges, the multi-timeframe momentum-alignment API and the price APIs.",
        "universe_size": 21,
        "upstream_status": "ok",
        "most_trending_252d": "GLD"
    },
    "meta": {
        "timestamp": "2026-06-12T10:34:48.152Z",
        "request_id": "31d6b572-f96e-40ab-a727-033e832abe5a"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}