# 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.

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

#### Response

```json
{
  "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)

```http
curl -H "x-api-key: your-api-key" \
"https://pricing.aleno.ai/v1/equities/quote?symbols=AAPL,MSFT,9961.HK"
```

#### **Request (single asset)**

```bash
curl -H "x-api-key: your-api-key" \
"https://pricing.aleno.ai/v1/equities/quote?symbols=9961.HK"
```

#### Request body

| Parameter | Type   | Required | Description                            |
| --------- | ------ | -------- | -------------------------------------- |
| Symbol(s) | String | Yes      | Comma-separated list of equity symbols |

#### **Response**

```json
{
  "data": [
    {
      "symbol": "AAPL",
      "price": 255.78
    },
    {
      "symbol": "MSFT",
      "price": 401.32
    },
    {
      "symbol": "9961.HK",
      "price": 419.8
    }
  ]
}
```

#### **Response fields**

| Field  | Description                      |
| ------ | -------------------------------- |
| symbol | Exchange-qualified ticker symbol |
| price  | Current price                    |
