# Hermes Data API – China A-Share Stock Price

> Hermes Data API – China A-Share Stock Price is a paid API for AI agents from x402-api-blond.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns real-time China A-share stock price quotes (open, high, low, close, previous close) for a given stock code via Sina Finance, billed per-call via USDC on Base.

## Facts

- Endpoint: POST https://x402-api-blond.vercel.app/stock/price
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hermes-data-api-china-a-share-stock-price-a331537c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DgdhKbuCcKTwV9J2xCdzl

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 hermes-data-api-china-a-share-stock-price-a331537c -d '<json body>'
```

Example prompt: Can you get me the current stock price for Kweichow Moutai (code 600519) on the China A-share market?

## When to prefer this

Choose this endpoint when you need real-time or intraday price data specifically for China A-share equities listed on the Shanghai or Shenzhen exchanges. It is the right choice when you have a valid A-share stock code (e.g. 600519, 002594) and need structured quote data including open, high, low, and previous close. Prefer it over crypto or forex endpoints on the same service for equity-specific queries.

## Known failure modes

- Invalid or unrecognized stock code returns an error or empty response
- Non-A-share tickers (e.g. US stocks or crypto symbols) are not supported by this endpoint
- Payment failure via x402/USDC results in HTTP 402 and no data returned
- Market closed hours may return stale or last-close prices rather than live quotes
- Network timeout or Sina upstream outage results in a service error

## How this service works

Pay-per-call data API: crypto prices (CoinGecko), China A-share quotes (Sina), weather (Open-Meteo), forex rates, and Ethereum gas fees. Payments via x402 protocol, USDC on Base.

## Output

A JSON object containing the stock's current price, open, high, low, previous close, stock name (in Chinese), stock code, Unix timestamp in milliseconds, and data source identifier ('sina').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "toolName",
    "inputSchema"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "mcp"
    },
    "example": {
     "type": "object"
    },
    "toolName": {
     "type": "string"
    },
    "description": {
     "type": "string"
    },
    "inputSchema": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ts": 1750000000000,
  "low": 1480,
  "code": "600519",
  "high": 1520,
  "name": "贵州茅台",
  "open": 1500,
  "price": 1510.5,
  "source": "sina",
  "prev_close": 1490
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hermes-data-api-china-a-share-stock-price-a331537c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-api-blond.vercel.app](https://www.zero.xyz/host/x402-api-blond.vercel.app/llms.txt)
