Zum Inhalt springen
GET /v1/type

Securities of a type

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/nasdaq-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "type": "etf",
        "count": 100,
        "total": 1243,
        "securities": [
            {
                "name": "AdvisorShares Dorsey Wright ADR ETF",
                "type": "Fund / ETF",
                "symbol": "AADR",
                "type_raw": ""
            },
            {
                "name": "Alpha Architect US Equity 2 ETF",
                "type": "Fund / ETF",
                "symbol": "AAEQ",
                "type_raw": ""
            },
            {
                "name": "Leverage Shares 2X Long AAL Daily ETF",
                "type": "Fund / ETF",
                "symbol": "AALG",
                "type_raw": ""
            },
            {
                "name": "GraniteShares 2x Long AAPL Daily ETF",
                "type": "Fund / ETF",
                "symbol": "AAPB",
                "type_raw": ""
            },
            {
                "name": "Direxion Daily AAPL Bear 1X ETF",
                "type": "Fund / ETF",
                "symbol": "AAPD",
                "type_raw": ""
            },
            {
                "name": "Direxion Daily AAPL Bull 2X ETF",
                "type": "Fund / ETF",
                "symbol": "AAPU",
                "type_raw": ""
            },
            {
                "name": "Alpha Architect US Equity ETF",
                "type": "Fund / ETF",
                "symbol": "AAUS",
                "type_raw": ""
            },
            {
                "name": "Alpha Architect Global Factor Equity ETF",
                "type": "Fund / ETF",
                "symbol": "AAVM",
                "type_raw": ""
            },
            {
                "name": "iShares MSCI All Country Asia ex Japan ETF",
                "type": "Fund / ETF",
                "symbol": "AAXJ",
                "type_raw": ""
            },
            {
                "name": "Alpha Blue Capital US Small-Mid Cap Dynamic ETF",
                "type": "Fund / ETF",
                "symbol": "ABCS",
                "type_raw": ""
            },
            {
                "name": "VictoryShares Pioneer Asset-Based Income ETF",
                "type": "Fund / ETF",
                "symbol": "ABI",
                "type_raw": ""
            },
            {
                "name": "Argent Large Cap ETF",
                "type": "Fund / ETF",
                "symbol": "ABIG",
                "type_raw": ""
            },
            {
                "name": "Leverage Shares 2x Long ABNB Daily ETF",
                "type": "Fund / ETF",
                "symbol": "ABNG",
                "type_raw": ""
            },
            {
                "name": "ARS Core Equity Portfolio ETF",
                "type": "Fund / ETF",
                "symbol": "ACEP",
                "type_raw": ""
            },
            {
                "name": "iShares MSCI ACWI ETF",
                "type": "Fund / ETF",
                "symbol": "ACWI",
                "type_raw": 
…