Ir al contenido
GET /v1/list

List all securities

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/nasdaq-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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",
           
…