# claw402 China Northbound Stock Connect Flow Data

> claw402 China Northbound Stock Connect Flow Data is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns northbound stock connect flow data for Chinese A-share markets, optionally filtered by trade date or date range.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/stocks/cn/northbound
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-china-northbound-stock-connect-flow-data-50b37362
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x_m1cyTHgn2ap14JAUg3X

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 claw402-china-northbound-stock-connect-flow-data-50b37362
```

Example prompt: Can you pull the northbound Stock Connect flow data for Chinese A-shares for today, or if not available yet, for yesterday's trade date?

## When to prefer this

Use this endpoint when you need northbound Stock Connect capital flow data for Chinese A-share markets and want to pay per call with USDC via x402 without API key registration. Prefer over alternatives when you need lightweight, pay-as-you-go access to CN northbound flow data without account setup.

## Known failure modes

- Invalid date format returns error or empty data array
- Future trade dates may return empty data array
- Non-trading days return empty data
- Network or payment failure via x402 returns 402 or connection error
- Missing required method/type in input schema returns validation error

## How this service works

Backed by vergex.trade. Pay for any API with USDC. No API keys. No registration. Just a wallet.

## Output

A JSON object with a code field (0 = success) and a data array containing northbound stock connect flow records for the requested date or date range, including trade date and flow amounts.

## 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",
     "properties": {
      "end_date": {
       "type": "string"
      },
      "start_date": {
       "type": "string"
      },
      "trade_date": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/claw402-china-northbound-stock-connect-flow-data-50b37362/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from claw402.ai](https://www.zero.xyz/host/claw402.ai/llms.txt)
