Welcome to the Random Username Generator API, your go-to tool for generating unique and creative usernames effortlessly!
The base URL for all API endpoints is: https://usernameapiv1.vercel.app/
/api/random-usernames
This endpoint generates random usernames by combining a prefix, a suffix, and a randomly selected ending ("2048", a random number between 2024 and 2048, or an underscore "_").
Generate a single random username:
GET https://usernameapiv1.vercel.app/api/random-usernames
Response:
{
"usernames": [
"QuantumMaster2048"
]
}
Generate multiple random usernames:
GET https://usernameapiv1.vercel.app/api/random-usernames?count=5
Response:
{
"usernames": [
"StardustWolf_",
"LunaEnigma2048",
"CosmicPirate2032",
"DeltaSeeker_",
"TechMover2050"
]
}
count
parameter is not a valid number or is missing, the API defaults to generating 1 username.Cross-Origin Resource Sharing (CORS) is enabled to allow requests from different origins.
This API is powered by Vercel for serverless deployment of Node.js applications, ensuring reliability and scalability.
Feel free to explore and integrate this API into your applications to generate unique usernames for your users or projects. If you have any questions or feedback, please don't hesitate to reach out!