Docs and examples

For people translating or AI-translating Chinese webnovels into English, where terminology, character names, sect names, and cultivation levels drift across a long multi-chapter work. Chapter lock for Chinese webnovel / xianxia / cultivation terms: POST /v1/lock accepts pasted Chinese chapter text and returns convention hits and title-specific names from that text only. It is not a full novel machine-translation engine, and it is not a glossary pack.

Live lock: https://culturebiz-xianxia-lock.onrender.com · RapidAPI: https://rapidapi.com/zhongzhir/api/chinese-narrative-chapter-lock · RapidAPI pricing

POST /v1/lock

Body: JSON {"text": "<pasted Chinese narrative>"}. Response fields: locked_terms, title_entities, csv, character_bible. Buyer text only; the service does not host novels.

curl -s -X POST https://culturebiz-xianxia-lock.onrender.com/v1/lock \
  -H 'Content-Type: application/json' \
  -d '{"text":"赤霞峰陈舟道友已至筑基。陈舟运转灵气,真元归于丹田,再修赤霞心法,拜见赤霞峰长老。"}'

Public-facts sample

Original public-genre snippet (not a novel excerpt). Precomputed with the same POST /v1/lock fields.

赤霞峰陈舟道友已至筑基。陈舟运转灵气,真元归于丹田,再修赤霞心法,拜见赤霞峰长老。

locked_terms

zhenpos
道友Fellow Daoisthonorific
筑基Foundation Establishmentrank
灵气spiritual qienergy
真元true essenceenergy
丹田dantianenergy
长老Elderhonorific

title_entities

zhkind
赤霞峰sect
赤霞心法skill
陈舟person

character_bible

zhkindcount
赤霞峰sect2
陈舟person2
{
  "locked_terms": [
    {
      "zh": "道友",
      "en": "Fellow Daoist",
      "pos": "honorific"
    },
    {
      "zh": "筑基",
      "en": "Foundation Establishment",
      "pos": "rank"
    },
    {
      "zh": "灵气",
      "en": "spiritual qi",
      "pos": "energy"
    },
    {
      "zh": "真元",
      "en": "true essence",
      "pos": "energy"
    },
    {
      "zh": "丹田",
      "en": "dantian",
      "pos": "energy"
    },
    {
      "zh": "长老",
      "en": "Elder",
      "pos": "honorific"
    }
  ],
  "title_entities": [
    {
      "zh": "赤霞峰",
      "kind": "sect"
    },
    {
      "zh": "赤霞心法",
      "kind": "skill"
    },
    {
      "zh": "陈舟",
      "kind": "person"
    }
  ],
  "csv": "source,target\n道友,Fellow Daoist\n筑基,Foundation Establishment\n灵气,spiritual qi\n真元,true essence\n丹田,dantian\n长老,Elder\n赤霞峰,赤霞峰\n赤霞心法,赤霞心法\n陈舟,陈舟\n",
  "character_bible": [
    {
      "zh": "赤霞峰",
      "kind": "sect",
      "count": 2
    },
    {
      "zh": "陈舟",
      "kind": "person",
      "count": 2
    }
  ]
}

Other endpoints

GET /health — liveness. GET /v1/metrics — stranger-funnel counters (no PII).

Search-targeted notes: webnovel localization, honorific and rank lock.