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
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":"赤霞峰陈舟道友已至筑基。陈舟运转灵气,真元归于丹田,再修赤霞心法,拜见赤霞峰长老。"}'
Original public-genre snippet (not a novel excerpt). Precomputed with
the same POST /v1/lock fields.
赤霞峰陈舟道友已至筑基。陈舟运转灵气,真元归于丹田,再修赤霞心法,拜见赤霞峰长老。
| zh | en | pos |
|---|---|---|
| 道友 | Fellow Daoist | honorific |
| 筑基 | Foundation Establishment | rank |
| 灵气 | spiritual qi | energy |
| 真元 | true essence | energy |
| 丹田 | dantian | energy |
| 长老 | Elder | honorific |
| zh | kind |
|---|---|
| 赤霞峰 | sect |
| 赤霞心法 | skill |
| 陈舟 | person |
| zh | kind | count |
|---|---|---|
| 赤霞峰 | sect | 2 |
| 陈舟 | person | 2 |
{
"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
}
]
}
GET /health — liveness.
GET /v1/metrics — stranger-funnel counters (no PII).
Search-targeted notes: webnovel localization, honorific and rank lock.