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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aleno.ai/apis/rest-v1/rwas/equities.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
