# A-Share Indices (China Big 4 Stock Indices)

> A-Share Indices (China Big 4 Stock Indices) 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 real-time market data for China's four major A-share stock indices: Shanghai Composite (上证指数), Shenzhen Component (深证成指), ChiNext (创业板指), and STAR Market 50 (科创50).

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/a-share-indices
- 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-indices-china-big-4-stock-indices-15a16f49
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8jcFmW4V6zf77JFNgrX8z

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-indices-china-big-4-stock-indices-15a16f49
```

Example prompt: What are the current real-time levels for all four of China's major A-share indices — Shanghai Composite, Shenzhen Component, ChiNext, and STAR Market 50?

## When to prefer this

Choose this endpoint when you need real-time coverage of all four major Chinese A-share indices in a single call, rather than scraping individual exchange websites or using paid Bloomberg/Reuters feeds. It is especially useful for agents monitoring Chinese equity market conditions, building multi-market dashboards, or needing a low-cost ($0.01 USDC) no-registration alternative to premium financial data providers. For global indices outside of China, prefer the sibling global-indices endpoint.

## Known failure modes

- Upstream data source unavailable during Chinese market maintenance hours or holidays
- Rate limiting or payment failure if USDC payment via x402 protocol is not completed
- Empty or stale data if the underlying market data feed experiences delays
- Network timeout if the agentdatum.com service is temporarily unreachable

## How this service works

A股大盘指数 — A股四大股指一体化：上证指数/深证成指/创业板指/科创50实时行情。

## Output

Returns real-time market data for all four major Chinese A-share indices in a single unified response: Shanghai Composite (上证指数), Shenzhen Component Index (深证成指), ChiNext Index (创业板指), and STAR Market 50 (科创50), including current index levels and related market metrics.

## 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": 4,
   "source": "Tencent Finance/A股指数",
   "indices": [
    {
     "code": "sh000001",
     "index": "上证指数",
     "price": 3926.96,
     "change": -19.72,
     "volume": "572793677",
     "turnover": "116420307",
     "change_percent": -0.5
    },
    {
     "code": "sh000001",
     "index": "上证指数",
     "price": 3926.96,
     "change": -19.72,
     "volume": "572793677",
     "turnover": "116420307",
     "change_percent": -0.5
    }
   ]
  },
  "source": "a_share_indices",
  "data_type": "金融",
  "collected_at": "2026-08-14T00:13:15Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/a-share-indices-china-big-4-stock-indices-15a16f49/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)
