← Developer Utilities

Fake User Profile

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.

Parameters

count optional default: 1

Count

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/generate/user
Generate a single fake user
curl https://nordapi.ee/api/v1/generate/user
Generate 5 fake users
curl "https://nordapi.ee/api/v1/generate/user?count=5"
Generate 20 test users for seeding
curl "https://nordapi.ee/api/v1/generate/user?count=20"

Live Response

{
  "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
}