Chinese Language Intelligence API
Programmatic access to the same AI-powered Chinese tools that power Chinese365.org. Built for developers, schools, and content platforms.
Base URL
https://api.chinese365.org/v1
Authentication
All requests require a Bearer token:
Authorization: Bearer c365_live_xxxxxxxxxxxxxxxxxxxxx
Endpoints
GET
/v1/character/{char}freeLook up a single Chinese character.
GET /v1/character/学
GET
/v1/pinyin?text=...freeConvert Chinese text to pinyin. Local, no LLM cost.
GET /v1/pinyin?text=我喜欢学习中文&style=marks
GET
/v1/hsk/{level}freeGet all words for an HSK level (1-9).
GET /v1/hsk/1
POST
/v1/sentence/analyzestarterAnalyze sentence: tokens, grammar, HSK level, difficulty, translation. (LLM)
POST { text: "我昨天去了北京。" }POST
/v1/grammar/checkstarterFind grammar errors with explanations. (LLM)
POST { text: "我很喜欢吃了中国菜。", learnerLevel: "HSK 2" }POST
/v1/reading/analyzegrowthEstimate reading level + optional rewrite to target HSK. (LLM)
POST { text: "...", rewriteTo: 3 }POST
/v1/sentence/generategrowthGenerate example sentences at a target HSK level. (LLM)
POST { word: "学", hskLevel: 2, count: 5 }POST
/v1/text/simplifygrowthRewrite text at a specific HSK level. (LLM)
POST { text: "...", targetLevel: 3 }Rate limits
| Plan | Monthly | Rate | Price |
|---|---|---|---|
| Free | 1,000 | 10/min | $0 |
| Starter | 50,000 | 100/min | $9 |
| Growth | 250,000 | 500/min | $29 |
| Pro | 1,000,000 | 2,000/min | $99 |
| Business | 5,000,000 | 10,000/min | $299 |
Common error codes
400 INVALID_REQUEST — Bad parameters401 UNAUTHORIZED — Missing API key403 FORBIDDEN — Key lacks access404 NOT_FOUND — Resource not found429 RATE_LIMITED — Rate limit hit503 LLM_UNAVAILABLE — All AI providers downWant an API key? Contact
api@chinese365.org (Phase 3 will formalize signup).