# 2s.io Chinese Script Converter

> 2s.io Chinese Script Converter is a paid API for AI agents from 2s.io, paid per call via x402, $0.0025/call, status unknown (last checked 2026-09-14).

Converts Chinese text between Simplified and Traditional script variants (Mainland, Taiwan, Hong Kong, Japanese) using deterministic OpenCC mappings

## Facts

- Endpoint: GET https://2s.io/api/chinese/convert
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-chinese-script-converter-faf562e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_THwCBh7Mh7Yw5lEGd8Bey

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 2s-io-chinese-script-converter-faf562e9
```

Example prompt: Convert this simplified Chinese text to Taiwan Traditional (twp with idioms): '这个软件的功能非常强大，用户可以免费下载使用。'

## When to prefer this

Use this endpoint when you need fast, deterministic, keyless conversion of Chinese text between specific regional script variants (Mainland Simplified, Taiwan Traditional with/without idioms, Hong Kong Traditional, generic Traditional, or Japanese Shinjitai). Prefer it over LLM-based translation when you need consistent character-level script conversion without interpretation or paraphrasing. Ideal for localization pipelines, content management systems, or any workflow requiring region-specific Chinese script formatting.

## Known failure modes

- Invalid or missing 'from'/'to' variant code returns an error — must be one of: cn, tw, twp, hk, t, jp
- Empty or missing 'text' parameter causes a validation error
- Text exceeding 5000 characters is rejected
- Passing non-Chinese text may return unchanged or incorrectly mapped characters
- Same 'from' and 'to' variant returns text unchanged

## How this service works

Convert Chinese text between Simplified and Traditional scripts (and regional variants). from/to take: cn (Mainland Simplified), tw (Taiwan Traditional), twp (Taiwan w/ idioms), hk (Hong Kong Traditional), t (generic Traditional), jp (Japanese Shinjitai). E.g. from=cn to=tw. Deterministic, keyless (OpenCC mappings).

## Output

The converted Chinese text in the target regional script variant, transformed deterministically using OpenCC mappings with no API key required.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text",
      "from",
      "to"
     ],
     "properties": {
      "to": {
       "enum": [
        "cn",
        "tw",
        "twp",
        "hk",
        "t",
        "jp"
       ],
       "type": "string",
       "description": "Target variant: cn | tw | twp | hk | t | jp."
      },
      "from": {
       "enum": [
        "cn",
        "tw",
        "twp",
        "hk",
        "t",
        "jp"
       ],
       "type": "string",
       "description": "Source variant: cn | tw | twp | hk | t | jp."
      },
      "text": {
       "type": "string",
       "maxLength": 5000,
       "minLength": 1
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-chinese-script-converter-faf562e9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
