/v1/type
Securities of a type
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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":
…