Retrieve a random list of users with this API endpoint. You'll receive a response containing a randomly generated list of users, useful for scenarios such as testing, demo data generation, or populating user interfaces with dummy data.

https://api.freeapi.app/api/v1/public/randomusers?page=1&limit=10

Example-> JSON data

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 { "gender": "male", "name": { "title": "Mr", "first": "Joseph", "last": "Evans" }, "location": { "street": { "number": 61, "name": "Lunn Avenue" }, "city": "Hastings", "state": "Otago", "country": "New Zealand", "postcode": 92298, "coordinates": { "latitude": "51.9039", "longitude": "-45.2357" }, "timezone": { "offset": "-6:00", "description": "Central Time (US & Canada), Mexico City" } }, "email": "joseph.evans@example.com", "login": { "uuid": "9230749e-c285-41b4-9a0f-46dab2454b4e", "username": "angryzebra337", "password": "otis", "salt": "WiHweSpK", "md5": "2cc09194861ea12e8e842cdce5749230", "sha1": "aa808f8a4f03df53a427905ae690c677b2d68895", "sha256": "c857e62a617c9015a05b9ecc7f63e05c90042bd79514ca49bacfdf7e97b482d8" }, "dob": { "date": "1968-07-21T10:02:51.768Z", "age": 54 }, "registered": { "date": "2019-01-31T10:09:35.816Z", "age": 4 }, "phone": "(612)-327-2806", "cell": "(029)-082-3612", "id": 1, "picture": { "large": "https://randomuser.me/api/portraits/men/65.jpg", "medium": "https://randomuser.me/api/portraits/med/men/65.jpg", "thumbnail": "https://randomuser.me/api/portraits/thumb/men/65.jpg" }, "nat": "NZ" }

Get details of a user based on the specified ID. Provide a valid user ID as a parameter to receive detailed information about the user matching the ID.

https://api.freeapi.app/api/v1/public/randomusers/{userId}

Example-> JSON data

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 { "gender": "male", "name": { "title": "Mr", "first": "Joseph", "last": "Evans" }, "location": { "street": { "number": 61, "name": "Lunn Avenue" }, "city": "Hastings", "state": "Otago", "country": "New Zealand", "postcode": 92298, "coordinates": { "latitude": "51.9039", "longitude": "-45.2357" }, "timezone": { "offset": "-6:00", "description": "Central Time (US & Canada), Mexico City" } }, "email": "joseph.evans@example.com", "login": { "uuid": "9230749e-c285-41b4-9a0f-46dab2454b4e", "username": "angryzebra337", "password": "otis", "salt": "WiHweSpK", "md5": "2cc09194861ea12e8e842cdce5749230", "sha1": "aa808f8a4f03df53a427905ae690c677b2d68895", "sha256": "c857e62a617c9015a05b9ecc7f63e05c90042bd79514ca49bacfdf7e97b482d8" }, "dob": { "date": "1968-07-21T10:02:51.768Z", "age": 54 }, "registered": { "date": "2019-01-31T10:09:35.816Z", "age": 4 }, "phone": "(612)-327-2806", "cell": "(029)-082-3612", "id": 1, "picture": { "large": "https://randomuser.me/api/portraits/men/65.jpg", "medium": "https://randomuser.me/api/portraits/med/men/65.jpg", "thumbnail": "https://randomuser.me/api/portraits/thumb/men/65.jpg" }, "nat": "NZ" }

Retrieve details of a single random user using this API endpoint. You'll receive a response containing the details of one randomly selected user.

https://api.freeapi.app/api/v1/public/randomusers/user/random

Example-> JSON data

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 { "gender": "male", "name": { "title": "Mr", "first": "Joseph", "last": "Evans" }, "location": { "street": { "number": 61, "name": "Lunn Avenue" }, "city": "Hastings", "state": "Otago", "country": "New Zealand", "postcode": 92298, "coordinates": { "latitude": "51.9039", "longitude": "-45.2357" }, "timezone": { "offset": "-6:00", "description": "Central Time (US & Canada), Mexico City" } }, "email": "joseph.evans@example.com", "login": { "uuid": "9230749e-c285-41b4-9a0f-46dab2454b4e", "username": "angryzebra337", "password": "otis", "salt": "WiHweSpK", "md5": "2cc09194861ea12e8e842cdce5749230", "sha1": "aa808f8a4f03df53a427905ae690c677b2d68895", "sha256": "c857e62a617c9015a05b9ecc7f63e05c90042bd79514ca49bacfdf7e97b482d8" }, "dob": { "date": "1968-07-21T10:02:51.768Z", "age": 54 }, "registered": { "date": "2019-01-31T10:09:35.816Z", "age": 4 }, "phone": "(612)-327-2806", "cell": "(029)-082-3612", "id": 1, "picture": { "large": "https://randomuser.me/api/portraits/men/65.jpg", "medium": "https://randomuser.me/api/portraits/med/men/65.jpg", "thumbnail": "https://randomuser.me/api/portraits/thumb/men/65.jpg" }, "nat": "NZ" }