# Hermes x402 Toolkit — Chinese Text Utilities

> Hermes x402 Toolkit — Chinese Text Utilities is a paid API for AI agents from api.zlovev.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-17).

Converts Chinese text between Simplified and Traditional scripts, or generates Pinyin romanization, paying per-call in USDC with no signup required.

## Facts

- Endpoint: GET https://api.zlovev.com/api/cn/text
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-17
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hermes-x402-toolkit-chinese-text-utilities-765662a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m0-8K7pQOhzX6-CgJ2JVO

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-x402-toolkit-chinese-text-utilities-765662a7
```

Example prompt: Convert this simplified Chinese text '汉字转换' to traditional Chinese characters for me.

## When to prefer this

Choose this endpoint when you need lightweight, pay-per-call Chinese script conversion or Pinyin romanization without managing API keys or subscriptions. Ideal for agents that occasionally need to process Chinese text and want to pay fractional USDC per request via x402 on Base rather than committing to a monthly NLP service plan.

## Known failure modes

- Missing required 'text' query parameter returns an error
- Input text exceeding 5000 characters may be rejected
- Invalid 'mode' value (anything other than s2t, t2s, or pinyin) returns an error
- Payment failure or insufficient USDC balance on Base blocks the request with a 402 response
- Non-Chinese or mixed-script input may produce unexpected or identity-pass-through output

## 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 mode used (s2t, t2s, or pinyin), the original input text, and the converted output string — e.g. {"mode":"s2t","input":"汉字转换","output":"漢字轉換"}.

## 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",
     "required": [
      "text"
     ],
     "properties": {
      "mode": {
       "type": "string",
       "description": "s2t | t2s | pinyin"
      },
      "text": {
       "type": "string",
       "description": "Chinese text (max 5000 chars)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "s2t",
  "input": "汉字转换",
  "output": "漢字轉換"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hermes-x402-toolkit-chinese-text-utilities-765662a7/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)
