Work with original-script names
Keep source records in their existing writing system and add a separate inferred field.
Chinese name gender lookup
Analyze a full name written in Chinese characters and return a name-based gender prediction with China-specific context and probability when available.
Names do not define a person’s gender. Use the result as an inferred data signal and preserve unknown or ambiguous outcomes.
Try it online
Submit the full name in one field. The demo adds CN context and AI fallback automatically.
Example response shown below. Select Analyze name to run a live lookup.
{
"status": true,
"q": "王静怡",
"name": "静怡",
"gender": "female",
"country": "CN",
"probability": 95
}How it works
Chinese family names commonly appear before given names. The API accepts the complete value and uses the country context to interpret it.
Send the Chinese characters together; no manual first-name/last-name split is required.
GenderAPI evaluates the likely given-name signal with CN regional context.
Use the returned name, gender and probability, while keeping uncertain records unknown.
Chinese-script data
Sending the original characters preserves information that may be lost when a name is converted to Latin script.
Keep source records in their existing writing system and add a separate inferred field.
Submit the full Chinese name and inspect the extracted given-name signal in the response.
Use probability thresholds and retain unknown values rather than forcing every record into a category.
Simplified and Traditional
The input accepts Simplified and Traditional Chinese characters. Regional naming practices and characters used by more than one gender can still make individual names ambiguous.
AI fallback improves coverage when database evidence is absent, but it does not replace probability review or responsible use.
Frequently asked questions
GenderAPI evaluates the given-name characters using Chinese name evidence and regional context, then returns a name-based prediction and probability when enough evidence is available.
No. You can submit the full name in one field. GenderAPI analyzes the structure and returns the given-name signal used for the prediction.
The tool accepts Chinese characters, including Simplified and Traditional forms. Results still depend on whether the submitted name provides sufficient evidence.
The demo sends askToAI=true with CN country context. AI fallback is considered when the database has no result; it does not guarantee an answer.
The published policy says successful inputs are not retained as reusable query records. Technical and security logs follow a separate retention schedule. A query for which no gender can be found may be retained to improve GenderAPI; see the Privacy Policy for details.
Build the integration
Review authentication, country context, AI fallback and response fields before implementation.