Random User Generator
randomuser.me
Random User Generator | Home
Random user generator is a FREE API for generating placeholder user information. Get profile photos, names, and more. It's like Lorem Ipsum, for people.
Photos
Random user generator is a FREE API for generating placeholder user information. Get profile photos, names, and more. It's like Lorem Ipsum, for people.
Documentation
Random user generator is a FREE API for generating placeholder user information. Get profile photos, names, and more. It's like Lorem Ipsum, for people.
API Ninjas
api-ninjas.com › api › randomuser
Random User API - API Ninjas
The Random User API generates fake random user data such as name, email, address, username for placeholders or application testing.
Videos
Jimpix
jimpix.co.uk › words › random-username-generator.php
Random Username Generator
User accounts are ubiquitous these days - most of us have many, many user accounts spread across a lot of different sites. Next time you need to sign up, why not try for something other than jonno234 or bill533? Thinking of something original and fun can sometimes take a fair amount of thinking and imagination. Look no more! Use this free tool to generate a list of random usernames, by combining words from a range of different categories.
Reddit
reddit.com › r/web_design › i just launched randomuser.me, an api that generates random users for prototyping.
r/web_design on Reddit: I just launched randomuser.me, an API that generates random users for prototyping.
August 10, 2013 - The service will generate a user with a randomized gender, name, profile photo, email address. This is a very small launch and me and my developer are working to add more random data every day.
GitHub
github.com › giacomocerquone › random-user
GitHub - giacomocerquone/random-user: Random users generator - browser and node.js wrapper of randomuser.me/api/ · GitHub
var randomUser = require('random-user'); randomUser('simple') .then( (data) => console.log(data) ) .catch( (err) => console.log(err) ); // Response Object { firstName: 'charlotte', lastName: 'frazier', email: 'charlotte.frazier@example.com', username: 'purplemouse814', password: 'zelda' } randomUser() .then( (data) => console.log(data) ) .catch( (err) => console.log(err) ); // Response Object { gender: 'female', name: { title: 'mrs', first: 'elisabeth', last: 'schäfer' }, location: { street: '2629 schulstraße', city: 'hamm', state: 'rheinland-pfalz', postcode: 97456 }, email: 'elisabeth.schä
Starred by 2 users
Forked by 2 users
Languages JavaScript
Random User Generator
randomuser.me › documentation
Random User Generator | Documentation
Random user generator is a FREE API for generating placeholder user information. Get profile photos, names, and more. It's like Lorem Ipsum, for people.
Free Public APIs
freepublicapis.com › random-user-generator
👤 Random User Generator - Tested Every Single Day.
API for generating random user data like names, emails, addresses, and more. Provides JSON, XML, CSV, or YAML objects.
Postman
documenter.getpostman.com › view › 19878710 › 2s93Jrwk3R
Random User Generator API
The Postman Documenter generates and maintains beautiful, live documentation for your collections. Never worry about maintaining API documentation again.
WordPress
wordpress.org › plugins › random-user-ids
Random User IDs – WordPress plugin | WordPress.org
January 27, 2025 - All newly created users from that moment will be generated with a random user ID in the defined range.
Eviltester
apichallenges.eviltester.com › practice-sites › randomuser
RandomUser - Random User Generator - The API Challenges
RandomUser.me is an API that returns a randomly generated user.
Top answer 1 of 2
7
You could use .then()
function getUsers() {
fetch("https://randomuser.me/api/?results=2")
.then((results) => {
return results.json();
})
.then((data) => {
console.log(data);
// Access your data here
});
}
getUsers();
And you could also wrap it all in an async function as await must be used inside an async function:
(async function () {
const users = await fetch("https://randomuser.me/api/?results=2")
.then((response) => response.json())
.then((data) => {
return data;
});
console.log({ users });
})();
OR using your original syntax:
async function getUsers() {
const users = await fetch("https://randomuser.me/api/?results=2");
return users.json();
}
getUsers().then((data) => console.log(data));
2 of 2
1
You must await your async function to resolve a promise like this.
async function getUsers() {
let users = await fetch('https://randomuser.me/api/?results=2');
let data = await users.json();
}
await getUsers();
UiPath Marketplace
marketplace.uipath.com › listings › random-user-generator-test-data-automation
Random User Generator - Test Data Automation - RPA Component | UiPath Marketplace | Overview
Generates random user details that you can use in the automation of test data creation. The random user details that are generated include all the necessary information like First Name, Last Name, Gender, Date of Birth, Address, Email, Postal ...
R Package
rdrr.io › r › base › Random-user.html
Random-user: User-supplied Random Number Generation
Optionally, the user can supply ... and is intended to be used to initialize the user's RNG code. The argument is intended to be used to set the ‘seeds’; it is the seed argument to set.seed or an essentially random seed if RNGkind is called....