# China A-Share Limit-Up List

> China A-Share Limit-Up List is a paid API for AI agents from api.zlovev.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-19).

Returns the list of Chinese A-share stocks that hit the daily limit-up (涨停) circuit breaker for a given trading date, including how many consecutive days each stock has been limit-up.

## Facts

- Endpoint: GET https://api.zlovev.com/api/cn/limitup
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/china-a-share-limit-up-list-de8dfe0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7q6j3y9s-k4pBzl89u3FH

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-limit-up-list-de8dfe0e
```

Example prompt: Pull today's China A-share limit-up pool — I want to see which stocks hit 涨停 and how many consecutive days each has been on the limit-up board.

## When to prefer this

Use this endpoint when you need structured, machine-readable China A-share limit-up (涨停) data — especially the consecutive-day streak count — without setting up API keys or accounts. It is ideal for AI agents doing quantitative momentum research, daily market scans, or sentiment analysis on the Chinese equity market. Pay-per-call with USDC on Base means no subscription overhead for low-frequency use.

## Known failure modes

- Non-trading day date returns empty pool or an error indicating no data available
- Malformed date format (not YYYYMMDD) may return a validation error
- Payment failure via x402/USDC results in 402 response and no data returned
- Very recent dates may not yet have data if the trading session is still open

## How this service works

Pay-per-call data API for AI agents. No API key, no account, no signup — pay USDC on Base (eip155:8453) per request; free /api/meta lists all 22 endpoints. One call each: web page to LLM-ready text and link previews; China A-share quotes and limit-up pool; Chinese text and pinyin; Base/Ethereum on-chain reads (address, token, ERC-20 balances, tx, blocks, transfer history, gas price in USD); NFT records (collection, owner, and ipfs:// tokenURI resolved through public gateways); full-page screenshots; email verification without sending mail; ENS forward/reverse resolution; smart-contract due diligence (ABI, verified source, proxy); token security facts (owner, renounced ownership, paused, bytecode capability selectors); domain dossier (RDAP, DNS, TLS certificate, HTTP facts, hosting network).

## Output

A JSON object containing the trading date, total count of limit-up stocks, and a list of stocks each with their exchange code, Chinese name, and the number of consecutive limit-up days accumulated.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "date": {
       "type": "string",
       "description": "Trading date YYYYMMDD (default: latest trading day)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "20260915",
  "pool": [
   {
    "code": "002912",
    "name": "中新赛克",
    "limit_up_days": 4
   }
  ],
  "count": 32
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/china-a-share-limit-up-list-de8dfe0e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.zlovev.com](https://www.zero.xyz/host/api.zlovev.com/llms.txt)
