Populate your development and staging databases with realistic user data.
Development teams need realistic user data to test their applications. Creating fake users manually is tedious, and using real user data raises privacy concerns and compliance issues.
Our Random User Generator creates complete, realistic user profiles instantly. Generate hundreds of test users with proper names, emails, and profile data to seed your databases in seconds.
const res = await fetch("https://api.apiverve.com/v1/randomusergenerator?count=1&includeAvatar=true", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);