/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/rsiscreener-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rsiscreener-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rsiscreener-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/rsiscreener-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "screener class= filters by class. asset= is a supported key (see /v1/universe). RSI is Wilder's 14-period; Stochastic %K is the 14-day range position. Read fresh per call, nothing cached.",
"source": "Yahoo Finance daily closes (6mo range) across a multi-asset universe, live",
"classes": [
"equities",
"sector",
"commodities",
"bonds",
"crypto"
],
"service": "rsiscreener-api",
"settings": {
"oversold": 30,
"overbought": 70,
"rsi_period": 14
},
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/asset": "One market's RSI/Stochastic oscillator card (asset=sp500).",
"GET /v1/screener": "Cross-asset board with overbought/oversold lists and RSI ranking (class=sector optional).",
"GET /v1/universe": "The supported instruments."
},
"description": "RSI & oscillator screener (multi-asset) — which markets are overbought and which are oversold, ranked, live from Yahoo Finance (no key, nothing stored). screener returns a cross-asset board with the overbought (>70) and oversold (<30) markets, each asset's 14-day RSI and Stochastic %K, sorted hottest first. asset returns one market's oscillator card. universe lists what is covered. The cross-asset RSI / oscillator screener cut — distinct from the crypto-only RSI screener, the bring-your-own-candle oscillator APIs and the Bollinger and moving-average screeners.",
"universe_size": 21,
"assets_scanned": 21,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T10:35:07.679Z",
"request_id": "71a1d6d6-3836-4e5f-a9f3-931e7dcea03c"
},
"status": "ok",
"message": "Meta",
"success": true
}