# China A-Share Single-Stock Money Flow (Main Force Net Inflow)

> China A-Share Single-Stock Money Flow (Main Force Net Inflow) is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns institutional (main-force) net capital inflow data for a Chinese A-share stock over recent sessions, including net amount, main-force ratio, and daily breakdown.

## Facts

- Endpoint: GET https://api.x402node.dev/stock/cn-moneyflow
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/china-a-share-single-stock-money-flow-main-force-net-inflow-39a5df14
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MUnNyOoMUAUi7rz3m0hHB

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 china-a-share-single-stock-money-flow-main-force-net-inflow-39a5df14
```

Example prompt: Can you check if the main force (institutional money) has been net buying 600519 Kweichow Moutai on the A-share market over the last 5 sessions — show me the net inflow amount, main-force ratio, and daily breakdown?

## When to prefer this

Use this endpoint when you need institutional/main-force capital flow data specifically for Chinese A-share stocks — particularly useful for retail investors wanting to verify smart money activity before entering a position. Prefer this over generic stock quote endpoints when the question is about capital flow direction and institutional participation, not just price.

## Known failure modes

- Invalid or unsupported stock ticker returns an error or empty result
- Network timeout if upstream data source is slow
- Missing required query parameters (ticker, period) returns 400 error
- Stock not listed on A-share market returns no data
- Rate limiting or payment failure returns 402

## How this service works

China A-share single-stock money-flow: main-force (institutional) net inflow over recent sessions, with net amount, main-force ratio and daily breakdown. The 'is smart money buying this stock' check Chinese retail investors run before chasing. A股个股主力资金流：查任意A股近N日主力净流入、净额、主力占比，散户追涨前先看主力在不在买。A株個別銘柄の資金フロー。Flujo de capital por accion del mercado A. Accepts payment on Base or Solana — either network works.

## Output

Returns main-force (institutional) net inflow data for the specified A-share stock, including net inflow amount in CNY, main-force ratio as a percentage of total flow, and a day-by-day breakdown of capital flow over the requested recent sessions.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "code",
      "days"
     ],
     "properties": {
      "code": {
       "type": "string",
       "description": "A股代码 6位数字，如 600519(茅台) 或 000001(平安)"
      },
      "days": {
       "type": "string",
       "description": "可选，返回近N日，默认5，最大20"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/china-a-share-single-stock-money-flow-main-force-net-inflow-39a5df14/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
