# claw402 Chinese Stock Balance Sheet API

> claw402 Chinese Stock Balance Sheet API is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Retrieves balance sheet financial data for Chinese-listed stocks by stock code and reporting period

## Facts

- Endpoint: GET https://claw402.ai/api/v1/stocks/cn/balance-sheet
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-chinese-stock-balance-sheet-api-ef25d959
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WLfULBqjayah7V7eS-aNu

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-chinese-stock-balance-sheet-api-ef25d959
```

Example prompt: Can you pull the annual balance sheet for the Chinese stock with ts_code 600519.SH for the period ending 2023?

## When to prefer this

Use this endpoint when you need structured balance sheet financial data for stocks listed on Chinese exchanges (A-shares) and want to pay per-call with USDC without API key registration. Prefer this over alternatives when building lightweight financial analysis workflows for CN-market equities.

## Known failure modes

- Empty data array returned if ts_code or period does not match any records
- Invalid or malformed ts_code returns error or empty result
- Payment failure if USDC wallet has insufficient funds
- Unsupported report_type value may return no results
- Date range with no available filings returns empty array

## How this service works

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

## Output

Returns a JSON object with a status code and an array of balance sheet records for the requested Chinese stock, including financial data such as assets, liabilities, and equity figures for the specified reporting period.

## 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": {
      "period": {
       "type": "string"
      },
      "ts_code": {
       "type": "string"
      },
      "ann_date": {
       "type": "string"
      },
      "end_date": {
       "type": "string"
      },
      "start_date": {
       "type": "string"
      },
      "report_type": {
       "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-chinese-stock-balance-sheet-api-ef25d959/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)
