/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/closestrength-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/closestrength-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/closestrength-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/closestrength-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "metric is recent_clv (default, current pressure), avg_clv or upper_third. window is 60-1000 trading days (default 252). class filters to index/sector/commodity/bond/stock/crypto (default all). CLV = ((close-low)-(high-close))/(high-low). Read fresh per call, nothing cached.",
"source": "Yahoo Finance daily OHLC, live",
"classes": [
"index",
"sector",
"commodity",
"bond",
"stock",
"crypto"
],
"metrics": [
"avg_clv",
"recent_clv",
"upper_third"
],
"service": "closestrength-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/asset": "Full closing-strength profile of one instrument (symbol=SPY, window=252).",
"GET /v1/screener": "Rank the universe from strongest accumulation to heaviest distribution (metric=recent_clv, window=252, class=all).",
"GET /v1/universe": "The cross-asset universe and its classes."
},
"description": "Closing strength / Close Location Value — where each market closes inside its daily range and who controls the close, live from Yahoo Finance daily OHLC (no key, nothing stored). CLV runs -1 (close on the low) to +1 (close on the high). For each instrument it returns today's CLV, the window-average CLV (positive = accumulation, negative = distribution), the recent 20-day CLV (current pressure), and the share of days closing in the upper vs lower third of their range. asset returns one instrument's closing-strength profile; screener ranks the cross-asset universe from strongest accumulation to heaviest distribution. The close-location / accumulation-distribution-pressure cut, price-only — distinct from the candlestick-pattern API, the volume-indicator tools and the price feeds.",
"universe_size": 21,
"upstream_status": "ok",
"recent_window_days": 20,
"strongest_accumulation_20d": "XLK"
},
"meta": {
"timestamp": "2026-06-12T10:34:41.695Z",
"request_id": "13fc0ae3-885b-4b49-8ed6-3953e937c86e"
},
"status": "ok",
"message": "Meta",
"success": true
}