Username Generation
The /username endpoint returns a list of adjectives, another with animal names, and the last with professions. A number and a random username are generated from all the information. This endpoint does not require any options.
The username can consist of one or more elements chosen from the lists or the generated number.
GET/v1/username
Request Example
GET /v1/usernameResponse
json
{
"adjective": ["Happy", "Silly", "Clever", "Creative", "Brave", "..."],
"animal": ["Cat", "Dog", "Tiger", "Elephant", "Monkey", "..."],
"job": ["Writer", "Artist", "Musician", "Explorer", "Scientist", "..."],
"number": "99",
"username": "HappyCat99"
}cURL
bash
curl -X GET "https://api.sylvain.pro/v1/username"