curl --request GET \
--url http://localhost:4000/api/user/handle/check/{handle} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"available": true,
"handle": "<string>"
}
}
Check if a username handle is available for use
curl --request GET \
--url http://localhost:4000/api/user/handle/check/{handle} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"available": true,
"handle": "<string>"
}
}
Dynamic authentication JWT token
Handle availability status
The response is of type object
.