Language Support
By default, AI Captcha automatically detects the user's locale settings and displays the captcha in the appropriate language for that region. If you want to force a specific language, please refer to the table below and set the hl parameter to the corresponding language code.
Supported Languages
| Language | Code |
|---|---|
| Arabic | ar |
| Chinese | zh |
| Chinese Traditional | zh-tw |
| English | en |
| Farsi | fa |
| French | fr |
| German | de |
| Hindi | hi |
| Indonesian | id |
| Italian | it |
| Japanese | ja |
| Korean | ko |
| Malay | ms |
| Mongolian | mn |
| Portuguese | pt |
| Russian | ru |
| Spanish | es |
| Thai | th |
| Turkish | tr |
| Vietnamese | vi |
Usage Examples
Query Parameter
<script src="https://api1.aicaptcha.net/api.js?hl=zh" async defer></script>
Data Attribute
<div class="aicaptcha"
data-sitekey="your-site-key"
data-hl="fr">
</div>
JavaScript API
aiCaptcha.render('captcha-container', {
sitekey: 'your-site-key',
hl: 'es'
});