Check if a username is available for registration. No authentication required.
POSThttps://api.aitronos.com/v1/user/username/check-availability
username string required
Username to check (3-100 characters).
Availability status and message.
Bash
- Bash
- Python
- JavaScript
curl -X POST \
"https://api.aitronos.com/v1/user/username/check-availability" \
-H "Content-Type: application/json" \
-d '{
"username": "johndoe"
}'Response:
{
"available": true,
"username": "johndoe",
"message": "Username is available"
}