GET
/
api
/
user
/
handle
/
check
/
{handle}
Check handle availability
curl --request GET \
  --url http://localhost:4000/api/user/handle/check/{handle} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "available": true,
    "handle": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Dynamic authentication JWT token

Path Parameters

handle
string
required

Response

200 - application/json

Handle availability status

The response is of type object.