User Profile

General

Generate realistic user profile data with names, emails, and addresses

Locale
EN
Fields
9
Uses
0
Sign in to use template

Schema fields

id sequence
age integer
name name
email email
phone phone
address address
is_active boolean
avatar_url image_url
created_at datetime

Schema definition

json
{
  "id": {
    "type": "sequence",
    "options": {
      "start": 1
    }
  },
  "age": {
    "type": "integer",
    "options": {
      "max": 80,
      "min": 18
    }
  },
  "name": {
    "type": "name"
  },
  "email": {
    "type": "email"
  },
  "phone": {
    "type": "phone"
  },
  "address": {
    "type": "address"
  },
  "is_active": {
    "type": "boolean",
    "options": {
      "true_rate": 0.8
    }
  },
  "avatar_url": {
    "type": "image_url",
    "options": {
      "width": 200,
      "height": 200
    }
  },
  "created_at": {
    "type": "datetime",
    "options": {
      "to": "2026-12-31",
      "from": "2024-01-01"
    }
  }
}

Example API call

terminal
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.apiryner.com/v1/layouts/user-profile?count=5&locale=en"