Skip to content
GET /v1/universe

Supported instruments

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/macd-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "Supported instruments. Pass key as asset= to /v1/asset, class= to /v1/screener.",
        "count": 21,
        "assets": [
            {
                "key": "sp500",
                "class": "equities",
                "label": "S&P 500",
                "symbol": "SPY"
            },
            {
                "key": "nasdaq100",
                "class": "equities",
                "label": "Nasdaq 100",
                "symbol": "QQQ"
            },
            {
                "key": "small_caps",
                "class": "equities",
                "label": "US Small Caps",
                "symbol": "IWM"
            },
            {
                "key": "developed_intl",
                "class": "equities",
                "label": "Developed ex-US",
                "symbol": "EFA"
            },
            {
                "key": "emerging",
                "class": "equities",
                "label": "Emerging Markets",
                "symbol": "EEM"
            },
            {
                "key": "technology",
                "class": "sector",
                "label": "Technology",
                "symbol": "XLK"
            },
            {
                "key": "financials",
                "class": "sector",
                "label": "Financials",
                "symbol": "XLF"
            },
            {
                "key": "energy",
                "class": "sector",
                "label": "Energy",
                "symbol": "XLE"
            },
            {
                "key": "health_care",
                "class": "sector",
                "label": "Health Care",
                "symbol": "XLV"
            },
            {
                "key": "industrials",
                "class": "sector",
                "label": "Industrials",
                "symbol": "XLI"
            },
            {
                "key": "utilities",
                "class": "sector",
                "label": "Utilities",
                "symbol": "XLU"
            },
            {
                "key": "real_estate",
                "class": "sector",
                "label": "Real Estate",
                "symbol": "XLRE"
            },
            {
                "key": "gold",
                "class": "commodities",
                "label": "Gold",
                "symbol": "GLD"
            },
            {
                "key": "silver",
                "class": "commodities",
                "label": "Silver",
                "symbol": "SLV"
            },
            {
                "key": "oil",
                "class": "commodities",
                "label": "Crude Oil",
                "symbol": "USO"
            },
            {
                "key": "natural_gas",
                "class": "commodities",
                "label": "Natural Gas",
                "symbol": "UNG"
            },
            {
                "key": "broad_commodities",
                "class": "
…