GET /generate/user
Generate realistic but entirely fake user profiles for testing and development. Each profile includes a random name, email, username, address, phone number, date of birth, and avatar URL. Useful for populating test databases, UI prototyping with realistic data, demo environments, load testing, and anywhere you need realistic user data without using real personal information.
count
optional
default: 1
Count
| Name | Required | Default | Description |
|---|---|---|---|
count |
No | 1 | Count |
curl https://nordapi.ee/api/v1/generate/user
curl https://nordapi.ee/api/v1/generate/user
curl "https://nordapi.ee/api/v1/generate/user?count=5"
curl "https://nordapi.ee/api/v1/generate/user?count=20"
{
"count": 1,
"data": [
{
"avatar": "https://api.dicebear.com/7.x/avataaars/svg?seed=JohnGarcia",
"email": "john.garcia99@outlook.com",
"first_name": "John",
"id": "6c1ad3f3-f39e-48aa-866c-fa52f9f33306",
"last_name": "Garcia",
"username": "john854"
}
],
"success": true
}