/v1/meta
Service metadata + type breakdown
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/nasdaq-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nasdaq-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nasdaq-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/nasdaq-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"types": {
"Note": 63,
"Unit": 251,
"Other": 46,
"Right": 92,
"Warrant": 370,
"Preferred": 110,
"Fund / ETF": 1243,
"Common Stock": 3141,
"Depositary Receipt": 165
},
"service": "nasdaq-api",
"endpoints": {
"GET /v1/list": "List all securities (limit, offset).",
"GET /v1/meta": "This document.",
"GET /v1/type": "Securities of a type (type=, e.g. etf, warrant, unit, common stock).",
"GET /v1/search": "Search by symbol or company name (q=).",
"GET /v1/symbol": "Security by ticker symbol (symbol=, e.g. AAPL)."
},
"description": "Directory of NASDAQ-listed securities: ticker symbol, security name and normalized type (common stock, ETF/fund, warrant, unit, right, preferred, note, depositary receipt). Look up a ticker, search by symbol or name, filter by type, or list them all. The reference for confirming a symbol is NASDAQ-listed. Distinct from sp500-api (index) and finance-api (quotes). No key.",
"total_securities": 5481
},
"meta": {
"timestamp": "2026-06-08T18:25:06.140Z",
"request_id": "02be7bf3-3cf3-41c8-85cd-c7a4f7501ff3"
},
"status": "ok",
"message": "Meta",
"success": true
}