# A-Share Top 10 Blue-Chip Real-Time Quotes

> A-Share Top 10 Blue-Chip Real-Time Quotes is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns integrated real-time market quotes for China's 10 leading A-share blue-chip stocks including Moutai, Ping An, BYD, China Merchants, CATL, Longi, Wuliangye, Hengrui, and Hikvision.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/a-share-top
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/a-share-top-10-blue-chip-real-time-quotes-ee2110d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d_QrTxVLQD3kO2KrtR45a

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability a-share-top-10-blue-chip-real-time-quotes-ee2110d4
```

Example prompt: Can you pull the latest real-time quotes for the top 10 Chinese A-share blue-chip stocks — Moutai, BYD, CATL, Ping An, and the rest of the leading names?

## When to prefer this

Choose this endpoint when you need a single low-cost API call to retrieve real-time or near-real-time quotes for China's top 10 A-share blue-chip equities as a bundled package, rather than calling individual stock APIs or a broader market data provider. Ideal for agents monitoring Chinese equity markets, building portfolio dashboards, or generating daily market summaries focused on leading Chinese companies.

## Known failure modes

- Market closed / outside trading hours may return stale or last-close prices
- Upstream data source outage may result in delayed or unavailable quotes
- Payment failure (x402) returns 402 status before data is delivered
- Network timeout if real-time feed is slow to respond

## How this service works

A股龙头行情聚合 — A股10只龙头一体化行情：茅台/平安/比亚迪/招商/宁德/中国平安/隆基/五粮液/恒瑞/海康威视实时报价。

## Output

Returns real-time price quotes for 10 major A-share blue-chip stocks: Kweichow Moutai, Ping An Insurance, BYD, China Merchants Bank, CATL, Longi Green Energy, Wuliangye, Hengrui Medicine, and Hikvision — likely including current price, possibly change and percentage change.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "count": 10,
   "source": "Tencent Finance/A股龙头",
   "stocks": [
    {
     "low": 1301,
     "high": 1315.28,
     "name": "贵州茅台",
     "price": 1309.22,
     "change": 0.67,
     "symbol": "600519",
     "volume_hand": "24976",
     "change_percent": 0.05
    },
    {
     "low": 1301,
     "high": 1315.28,
     "name": "贵州茅台",
     "price": 1309.22,
     "change": 0.67,
     "symbol": "600519",
     "volume_hand": "24976",
     "change_percent": 0.05
    }
   ]
  },
  "source": "a_share_top",
  "data_type": "金融",
  "collected_at": "2026-08-09T18:12:21Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/a-share-top-10-blue-chip-real-time-quotes-ee2110d4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
