仮名 · 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

Halelley Leoelon Nororson

Raw IFID object
{
    "object": "ifid.identity",
    "schema": "ifid.v1",
    "id": "ID-A4EF37C2",
    "generated_at": "2026-08-18T18:22:27+00:00",
    "summary": {
        "full_name": "Halelley Leoelon Nororson",
        "gender": "male",
        "age": 79,
        "country": {
            "code": "us",
            "label": "United States"
        },
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "email": "[email protected]",
        "occupation": "Mechanical technician"
    },
    "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-A4EF37C2",
        "generated_at": "2026-08-18T18:22:27+00:00",
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "country": {
            "code": "us",
            "label": "United States"
        },
        "gender": "male",
        "name": {
            "title": "Dr.",
            "first": "Halelley",
            "middle": "Leoelon",
            "last": "Nororson",
            "full": "Halelley Leoelon Nororson"
        },
        "address": {
            "line1": "5789 Ridge Way",
            "line2": "",
            "city": "San Diego, CA",
            "postcode": "49794"
        },
        "contact": {
            "email": "[email protected]",
            "username": "halelleynororson4745",
            "password": "gZvHZyyYoUW#FH",
            "phone": "+1 924-127-3065"
        },
        "personal": {
            "birth_date": "1947-08-06",
            "age": 79,
            "blood_type": "O-",
            "height_cm": 193,
            "weight_kg": 91,
            "eye_color": "Amber",
            "hair_color": "Gray"
        },
        "employment": {
            "occupation": "Mechanical technician",
            "company": "Westfield Services",
            "salary": {
                "currency": "USD",
                "amount": 80257
            }
        },
        "finance": {
            "bank": "Sandbox Financial",
            "iban": "US89 TEST 1374 7498 1633",
            "card_type": "Visa test",
            "card_number": "4000005563279648",
            "card_expires": "09/2029",
            "cvv": "572"
        },
        "internet": {
            "ipv4": "198.51.100.180",
            "ipv6": "2001:db8:20b2:a115::691f",
            "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-418530",
            "passport": "US31291605",
            "drivers_license": "US-6429-7064"
        },
        "tracking": {
            "ups": "1ZCEE4D7ED56A04C00",
            "fedex": "218823707916"
        }
    }
}
接続 · 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.