仮名 · kamei — borrowed names

Identity Generator

Generate fictional identity records for testing, seed data, QA and demos.

Start generating API reference ● JSON & CSV
生成 · generate
American / United States

Gararwin Halaan Leobrook

Raw IFID object
{
    "object": "ifid.identity",
    "schema": "ifid.v1",
    "id": "ID-ABF84D6F",
    "generated_at": "2026-07-31T18:57:43+00:00",
    "summary": {
        "full_name": "Gararwin Halaan Leobrook",
        "gender": "male",
        "age": 22,
        "country": {
            "code": "us",
            "label": "United States"
        },
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "email": "[email protected]",
        "occupation": "Architect"
    },
    "request": {
        "count": 1,
        "name_set": "us",
        "country": "us",
        "gender": "random",
        "age_min": 18,
        "age_max": 85
    },
    "dataset": {
        "selected_name_set_counts": {
            "male_first_names": 2500,
            "female_first_names": 2500,
            "surnames": 3500,
            "full_name_combinations": 17500000
        },
        "total_name_entries": 230814
    },
    "identity": {
        "identity_id": "ID-ABF84D6F",
        "generated_at": "2026-07-31T18:57:43+00:00",
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "country": {
            "code": "us",
            "label": "United States"
        },
        "gender": "male",
        "name": {
            "title": "Dr.",
            "first": "Gararwin",
            "middle": "Halaan",
            "last": "Leobrook",
            "full": "Gararwin Halaan Leobrook"
        },
        "address": {
            "line1": "9593 Main St",
            "line2": "",
            "city": "Dallas, TX",
            "postcode": "25574"
        },
        "contact": {
            "email": "[email protected]",
            "username": "gararwinleobrook0473",
            "password": "aZmSjfeZ$SQTG5",
            "phone": "+1 997-852-8217"
        },
        "personal": {
            "birth_date": "2004-05-17",
            "age": 22,
            "blood_type": "AB-",
            "height_cm": 175,
            "weight_kg": 92,
            "eye_color": "Hazel",
            "hair_color": "Red"
        },
        "employment": {
            "occupation": "Architect",
            "company": "Meridian Trading",
            "salary": {
                "currency": "USD",
                "amount": 100977
            }
        },
        "finance": {
            "bank": "Sandbox Financial",
            "iban": "US87 TEST 1344 4852 8943",
            "card_type": "Mastercard test",
            "card_number": "5100002829176373",
            "card_expires": "09/2027",
            "cvv": "751"
        },
        "internet": {
            "ipv4": "198.51.100.254",
            "ipv6": "2001:db8:70d4:b4ee::69f4",
            "user_agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 17_4 like Mac OS X) AppleWebKit/605.1.15 Mobile/15E148"
        },
        "ids": {
            "national_id": "TEST-US-508834",
            "passport": "US14741630",
            "drivers_license": "US-9507-5026"
        },
        "tracking": {
            "ups": "1ZD6D2362F27E4109A",
            "fedex": "548597333480"
        }
    }
}
接続 · the api
ifid.v1

A complete IFID object

The JSON API returns request details, dataset counts, a summary, and the full fictional identity payload.

Single IFID

/api/generate.php?name_set=us&country=us&gender=random
{
  "object": "ifid.identity",
  "schema": "ifid.v1",
  "id": "ID-...",
  "summary": { "...": "..." },
  "request": { "...": "..." },
  "dataset": { "...": "..." },
  "identity": {
    "name": {},
    "address": {},
    "contact": {},
    "personal": {},
    "employment": {},
    "finance": {},
    "internet": {},
    "ids": {},
    "tracking": {}
  }
}

Batch IFIDs

/api/generate.php?count=25&name_set=jp&country=jp
{
  "object": "ifid.list",
  "schema": "ifid.v1",
  "count": 25,
  "request": { "...": "..." },
  "data": [
    { "object": "ifid.identity", "identity": {} }
  ]
}

CSV Export

/api/generate.php?count=1000&format=csv

CSV keeps the practical flat export for imports, fixtures, spreadsheets and QA datasets.

Metadata

/api/generate.php?meta=1

Includes available name sets, countries, formats, and real per-set counts. Current totals: 230,814 name entries and 388,480,754 full-name combinations.