Equities

Aleno provides real-time equity market data through a unified pricing infrastructure. The equities endpoints follow the same authentication,, and response standards as the Crypto pricing API

All endpoints require an API key passed via header.


Get Supported Assets

Returns a list of all available assets.

curl -H "x-api-key: your-api-key" \
"https://pricing.aleno.ai/v1/equities/symbols"

Response

{
  "data": [
    {
      "symbol": "QOMOU",
      "name": "Qomolangma Acquisition Corp.",
      "exchange": "NASDAQ",
      "type": "stock"
    },
    ...
  ],
  "meta": {
    "count": 26412,
    "supportedExchanges": {
      "US": [
        "NYSE",
        "NASDAQ",
        "AMEX"
      ],
      "KR": [
        "KSC",
        "KOSDAQ"
      ],
      "HK": [
        "HKSE"
      ]
    }
  }
}                    

Response fields

Field
Description

symbol

Ticker.

name

Full legal or common name of the company/entity

exchange

Primary exchange where the security is listed and traded.

type

Asset type classification (stock, fund, etf, trust).


Current Price

Returns the latest available current price for one or multiple equity symbols.

This endpoint is designed for real-time pricing, portfolio valuation, and oracle ingestion use cases.

Request (mutiple-assets)

Request (single asset)

Request body

Parameter
Type
Required
Description

Symbol(s)

String

Yes

Comma-separated list of equity symbols

Response

Response fields

Field
Description

symbol

Exchange-qualified ticker symbol

price

Current price

Last updated