# claw402 Chinese Stock Income Statement API

> claw402 Chinese Stock Income Statement 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-14).

Retrieves income statement (profit and loss) data for Chinese-listed stocks by stock code and reporting period

## Facts

- Endpoint: GET https://claw402.ai/api/v1/stocks/cn/income
- 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-chinese-stock-income-statement-api-c52acb4b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IMUizQlacrmUjEXZ5dNbu

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-income-statement-api-c52acb4b
```

Example prompt: Can you pull the annual income statement for Chinese stock 600519.SH (Kweichow Moutai) for the fiscal year ending 2023-12-31?

## When to prefer this

Use this endpoint when you need income statement (P&L) data specifically for Chinese-listed (A-share or CN-market) stocks and want to pay per-call with USDC without needing API key registration. Prefer over alternatives when building lightweight financial research tools or agents that need on-demand Chinese equity fundamentals.

## Known failure modes

- Invalid or unrecognized ts_code returns empty data array
- Unsupported period format causes no results
- Payment failure (402) if USDC wallet balance is insufficient
- Rate limiting if too many requests are made in quick succession
- Empty data array if no filings exist for the specified date range

## 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 code 0 on success and a data array containing income statement records for the specified Chinese stock, including revenue, profit, and other P&L line items for the requested period and report type.

## 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-income-statement-api-c52acb4b/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)
