Skip to content
GET /v1/list

List all securities

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/nasdaq-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "count": 50,
        "total": 5481,
        "securities": [
            {
                "name": "Artius II Acquisition Inc. - Class A Ordinary Shares",
                "type": "Common Stock",
                "symbol": "AACB",
                "type_raw": "Class A Ordinary Shares"
            },
            {
                "name": "Artius II Acquisition Inc. - Rights",
                "type": "Right",
                "symbol": "AACBR",
                "type_raw": "Rights"
            },
            {
                "name": "Artius II Acquisition Inc. - Units",
                "type": "Unit",
                "symbol": "AACBU",
                "type_raw": "Units"
            },
            {
                "name": "ATA Creativity Global - American Depositary Shares, each representing two common shares",
                "type": "Depositary Receipt",
                "symbol": "AACG",
                "type_raw": "American Depositary Shares, each representing two common shares"
            },
            {
                "name": "Armada Acquisition Corp. III - Class A Ordinary Share",
                "type": "Common Stock",
                "symbol": "AACI",
                "type_raw": "Class A Ordinary Share"
            },
            {
                "name": "Armada Acquisition Corp. III - Units",
                "type": "Unit",
                "symbol": "AACIU",
                "type_raw": "Units"
            },
            {
                "name": "Armada Acquisition Corp. III - Warrant",
                "type": "Warrant",
                "symbol": "AACIW",
                "type_raw": "Warrant"
            },
            {
                "name": "Abony Acquisition Corp. I - Class A Ordinary Share",
                "type": "Common Stock",
                "symbol": "AACO",
                "type_raw": "Class A Ordinary Share"
            },
            {
                "name": "Abony Acquisition Corp. I - Units",
                "type": "Unit",
                "symbol": "AACOU",
                "type_raw": "Units"
            },
            {
                "name": "Abony Acquisition Corp. I - Warrants",
                "type": "Warrant",
                "symbol": "AACOW",
                "type_raw": "Warrants"
            },
            {
                "name": "Apogee Acquisition Corp - Class A Ordinary Shares",
                "type": "Common Stock",
                "symbol": "AACP",
                "type_raw": "Class A Ordinary Shares"
            },
            {
                "name": "Apogee Acquisition Corp - Rights",
                "type": "Right",
                "symbol": "AACPR",
                "type_raw": "Rights"
            },
            {
                "name": "Apogee Acquisition Corp - Units",
                "type": "Unit",
                "symbol": "AACPU",
                "type_raw": "Units"
            },
            {
                "name": "Apogee Acquisition Corp - Warrant",
           
…