/v1/universe
The volume-bearing universe and its classes
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/rvol-api/v1/universe" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rvol-api/v1/universe", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rvol-api/v1/universe");
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/rvol-api/v1/universe",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "The volume-bearing universe the screener ranks — ETFs, large-cap stocks and crypto (FX has no exchange volume). Pass class= to a screener call to rank within one class.",
"count": 22,
"assets": [
{
"name": "S&P 500 ETF",
"class": "index",
"symbol": "SPY"
},
{
"name": "Nasdaq 100 ETF",
"class": "index",
"symbol": "QQQ"
},
{
"name": "Russell 2000 ETF",
"class": "index",
"symbol": "IWM"
},
{
"name": "Dow Jones ETF",
"class": "index",
"symbol": "DIA"
},
{
"name": "Technology Sector",
"class": "sector",
"symbol": "XLK"
},
{
"name": "Financials Sector",
"class": "sector",
"symbol": "XLF"
},
{
"name": "Energy Sector",
"class": "sector",
"symbol": "XLE"
},
{
"name": "Gold ETF",
"class": "commodity",
"symbol": "GLD"
},
{
"name": "Silver ETF",
"class": "commodity",
"symbol": "SLV"
},
{
"name": "Crude Oil ETF",
"class": "commodity",
"symbol": "USO"
},
{
"name": "20Y+ Treasuries ETF",
"class": "bond",
"symbol": "TLT"
},
{
"name": "High-Yield Credit ETF",
"class": "bond",
"symbol": "HYG"
},
{
"name": "Apple",
"class": "stock",
"symbol": "AAPL"
},
{
"name": "Microsoft",
"class": "stock",
"symbol": "MSFT"
},
{
"name": "Nvidia",
"class": "stock",
"symbol": "NVDA"
},
{
"name": "Tesla",
"class": "stock",
"symbol": "TSLA"
},
{
"name": "Amazon",
"class": "stock",
"symbol": "AMZN"
},
{
"name": "Meta Platforms",
"class": "stock",
"symbol": "META"
},
{
"name": "AMD",
"class": "stock",
"symbol": "AMD"
},
{
"name": "Netflix",
"class": "stock",
"symbol": "NFLX"
},
{
"name": "Bitcoin",
…