# StockWaves China Pulse Polling API

> StockWaves China Pulse Polling API is a paid API for AI agents from stockwaves.net, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Returns a structured snapshot of what is trending across Weibo, Baidu, and Douyin right now, including cross-platform consensus topics, finance-specific signals, and what is newly trending since the last poll.

## Facts

- Endpoint: GET https://stockwaves.net/api/cn/pulse
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stockwaves-china-pulse-polling-api-1f6f5ed6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A0QDGEl0Vx2zj69T0tZIC

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 stockwaves-china-pulse-polling-api-1f6f5ed6
```

Example prompt: Poll the China social pulse right now and show me what topics have reached cross-platform consensus across Weibo, Baidu, and Douyin in the last 15 minutes, including any new finance-related trends — give me up to 10 results per section.

## When to prefer this

Choose this endpoint when you need to continuously monitor Chinese social media trends with low latency and low cost per poll. It is specifically designed for agent polling loops where detecting freshness (new_since) matters more than deep article content. Prefer this over full-text news APIs when you want structured, cross-platform consensus signals from Weibo, Baidu, and Douyin at $0.003 per call. Ideal for finance agents watching for China-originated market catalysts or social sentiment shifts in near real-time.

## Known failure modes

- Invalid 'since' value outside 1-120 range returns a 400 error
- Invalid 'limit' value outside 1-30 range returns a 400 error
- Payment failure (x402 micropayment not processed) blocks the request
- During low-activity periods the 'new_since' array may be empty if no new topics appeared
- Stale data possible if upstream platform APIs are temporarily delayed
- Rate limiting if polling too aggressively beyond the intended cadence

## How this service works

China pulse, cheap enough to POLL: what China is talking about RIGHT NOW and what is NEW since your last call - built for agents that monitor continuously. Returns `consensus` (phrases trending on 2+ of Weibo/Baidu/Douyin at once = nationwide attention, not single-board noise), a `finance` slice, and `new_since` (what entered the boards in the last N minutes) so every poll returns fresh information. Structure only, no article text. ?since=1-120&limit=1-30.

## Output

A structured JSON response containing: a 'consensus' array of phrases trending simultaneously on 2 or more of Weibo, Baidu, and Douyin (indicating genuine nationwide attention), a 'finance' slice of finance-specific trending topics, and a 'new_since' array of topics that first entered the hot boards within the requested lookback window. No article text — structured metadata only.

## 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": {
      "limit": {
       "type": "integer",
       "maximum": 30,
       "minimum": 1,
       "description": "Max rows per section (default 10)"
      },
      "since": {
       "type": "integer",
       "maximum": 120,
       "minimum": 1,
       "description": "Minutes to look back for `new_since` (default 15)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stockwaves-china-pulse-polling-api-1f6f5ed6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stockwaves.net](https://www.zero.xyz/host/stockwaves.net/llms.txt)
