# A-Share Real-Time Quote (Tencent Finance)

> A-Share Real-Time Quote (Tencent Finance) is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns real-time A-share stock quote data including price, change percentage, volume, PE ratio, and five-level order book depth for a given stock code.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/a-share-quote
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/a-share-real-time-quote-tencent-finance-8173eb88
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L2FWHM95zrBiDpDKE3C-a

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-real-time-quote-tencent-finance-8173eb88
```

Example prompt: What's the current price, today's change percentage, PE ratio, and order book depth for Kweichow Moutai — stock code 600519?

## When to prefer this

Choose this endpoint when you need real-time A-share (Shanghai or Shenzhen) stock market data including price, change, volume, PE, and order book depth sourced from Tencent Finance. It is preferable when you want a single call that returns both quote and order book data without needing to manage exchange prefixes manually. Use the A-share indices sibling endpoint if you need index-level data (Shanghai Composite, ChiNext, etc.) rather than individual stock quotes.

## Known failure modes

- Invalid or unrecognized stock code returns an error or empty data
- Non-A-share codes (e.g. Hong Kong or US stocks) are not supported
- Queries outside Chinese market trading hours may return stale or zero-volume data
- Rate limiting or payment failure (402) if USDC balance is insufficient

## How this service works

A-Share Real-Time Quote — Tencent Finance A-share real-time quote: input code (600519/000001) returns price, change, volume, PE, and five-level order book. Auto prefix completion.

## Output

Returns a structured data object with the stock's real-time price, absolute and percentage change, trading volume, PE ratio, and five levels of bid/ask order book depth. Includes automatic prefix completion so you can input just the numeric code (e.g. 600519 or 000001) without manually specifying the SH/SZ exchange prefix.

## 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": {
   "pe": 7.28,
   "low": 1337,
   "high": 1359.6,
   "name": "贵州茅台",
   "open": 1338,
   "price": 1355.29,
   "change": 12.29,
   "source": "Tencent Finance/A股",
   "symbol": "sh600519",
   "currency": "CNY",
   "volume_hand": 32353,
   "turnover_wan": 437621,
   "change_percent": 0.92,
   "yesterday_close": 1343
  },
  "source": "a_share",
  "data_type": "金融",
  "collected_at": "2026-08-14T00:13:14Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/a-share-real-time-quote-tencent-finance-8173eb88/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)
