GET /randomuser
Generate a realistic random perfil de usuario from the RandomUser.me API, a popular service for generando fake user data. Returns a complete user identity incluyendo name, email, phone, address (street, city, state, país, postcode), date of birth, age, foto de perfil URLs (thumbnail, medium, large), login credentials (username, password), nationality, and a unique ID. Unlike the /generate/user endpoint which generates simple profiles locally, this endpoint produces richer, more realistic data with actual profile photos. Ideal para UI prototyping, populating demo environments, testing user registration flows, and creando realistic mockup data for presentations.
gender
opcional
Filter by gender (male or female)
nat
opcional
Nationality code (e.g., US, GB, NO, FI, DK)
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
gender |
No | - | Filter by gender (male or female) |
nat |
No | - | Nationality code (e.g., US, GB, NO, FI, DK) |
curl https://nordapi.ee/api/v1/randomuser
curl https://nordapi.ee/api/v1/randomuser
curl "https://nordapi.ee/api/v1/randomuser?nat=NO"
curl "https://nordapi.ee/api/v1/randomuser?gender=female&nat=FI"
curl "https://nordapi.ee/api/v1/randomuser?nat=DK"
{
"count": 1,
"data": [
{
"age": 49,
"date_of_birth": "1976-05-20T23:49:03.675Z",
"email": "tania.cardoso@example.com",
"gender": "female",
"location": {
"city": "Palhoça",
"country": "Brazil",
"latitude": "-78.9648",
"longitude": "31.7258",
"postcode": 29799,
"state": "São Paulo"
},
"name": {
"first": "Tânia",
"last": "Cardoso",
"title": "Mrs"
},
"nationality": "BR",
"phone": "(26) 6865-6625",
"picture": {
"large": "https://randomuser.me/api/portraits/women/27.jpg",
"medium": "https://randomuser.me/api/portraits/med/women/27.jpg",
"thumbnail": "https://randomuser.me/api/portraits/thumb/women/27.jpg"
},
"registered": "2008-10-02T10:38:08.261Z",
"username": "goldengorilla132"
}
],
"success": true
}