Skip to content
Last updated

Check if a username is available for registration. No authentication required.

POSThttps://api.aitronos.com/v1/user/username/check-availability

Request Body

username string required

Username to check (3-100 characters).

Returns

Availability status and message.

Bash
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"
}