> ## Documentation Index
> Fetch the complete documentation index at: https://alltick.co/apis/llms.txt
> Use this file to discover all available pages before exploring further.

# Stock product information

### Endpoint description

Batch query selected basic information for US stocks, Hong Kong stocks, and A-shares only.

```http theme={null}
POST /v1/stock-info
```

Request example:`https://quote.alltick.co/quote-stock-b-api/v1/stock-info`

### Request parameters

| Parameter   | Type   | Required | Description          |
| ----------- | ------ | -------- | -------------------- |
| `X-API-Key` | string | Yes      | Authentication token |
| `body`      | string | Yes      | Request content      |

### body request content

```json theme={null}
{
  "trace": "edd5df80-df7f-4acf-8f67-68fd2f096426",
  "data": {
    "symbol_list": [{"code": "700.HK"}, {"code": "UNH.US"}]
  }
}
```

| Name          | Type   | Required | Description                                    |
| ------------- | ------ | -------- | ---------------------------------------------- |
| `trace`       | string | Yes      | Request trace ID                               |
| `data`        | object | Yes      | Request data                                   |
| `symbol_list` | array  | Yes      | Product list                                   |
| `code`        | string | No       | Product code; case must match the product list |

### Response example

```json theme={null}
{
  "ret": 200,
  "msg": "ok",
  "trace": "edd5df80-df7f-4acf-8f67-68fd2f096426",
  "data": {
    "static_info_list": [{
      "board": "HKEquity",
      "bps": "101.7577888985738336",
      "circulating_shares": "9267359712",
      "currency": "HKD",
      "dividend_yield": "3.4558141358352833",
      "eps": "13.7190213011686429",
      "eps_ttm": "18.0567016900844671",
      "exchange": "SEHK",
      "hk_shares": "9267359712",
      "lot_size": "100",
      "name_cn": "腾讯控股",
      "name_en": "TENCENT",
      "name_hk": "騰訊控股",
      "symbol": "700.HK",
      "total_shares": "9267359712"
    }]
  }
}
```

### Response fields

| Field                | Type   | Description                              |
| -------------------- | ------ | ---------------------------------------- |
| `board`              | string | Stock market segment                     |
| `bps`                | string | Book value per share                     |
| `circulating_shares` | string | Free-float shares                        |
| `currency`           | string | Trading currency                         |
| `dividend_yield`     | string | Dividend yield                           |
| `eps`                | string | Earnings per share                       |
| `eps_ttm`            | string | Earnings per share (TTM)                 |
| `exchange`           | string | Product exchange                         |
| `hk_shares`          | string | Hong Kong shares (Hong Kong stocks only) |
| `lot_size`           | string | Shares per lot                           |
| `name_cn`            | string | Simplified Chinese product name          |
| `name_en`            | string | English product name                     |
| `name_hk`            | string | Traditional Chinese product name         |
| `symbol`             | string | Product code                             |
| `total_shares`       | string | Total shares                             |
