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

Carlinbert Belinbert Halanworth

Raw IFID object
{
    "object": "ifid.identity",
    "schema": "ifid.v1",
    "id": "ID-93320DFD",
    "generated_at": "2026-07-28T15:41:53+00:00",
    "summary": {
        "full_name": "Carlinbert Belinbert Halanworth",
        "gender": "male",
        "age": 59,
        "country": {
            "code": "us",
            "label": "United States"
        },
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "email": "[email protected]",
        "occupation": "Barista"
    },
    "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-93320DFD",
        "generated_at": "2026-07-28T15:41:53+00:00",
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "country": {
            "code": "us",
            "label": "United States"
        },
        "gender": "male",
        "name": {
            "title": "Mr.",
            "first": "Carlinbert",
            "middle": "Belinbert",
            "last": "Halanworth",
            "full": "Carlinbert Belinbert Halanworth"
        },
        "address": {
            "line1": "3709 Washington Ave",
            "line2": "",
            "city": "Charlotte, NC",
            "postcode": "77980"
        },
        "contact": {
            "email": "[email protected]",
            "username": "carlinberthalanworth6757",
            "password": "rvuNCjYXo42YQw",
            "phone": "+1 336-810-4744"
        },
        "personal": {
            "birth_date": "1967-04-07",
            "age": 59,
            "blood_type": "A-",
            "height_cm": 172,
            "weight_kg": 94,
            "eye_color": "Green",
            "hair_color": "Blond"
        },
        "employment": {
            "occupation": "Barista",
            "company": "Juniper Analytics",
            "salary": {
                "currency": "USD",
                "amount": 70658
            }
        },
        "finance": {
            "bank": "Fictional Savings",
            "iban": "US68 TEST 9036 3141 2304",
            "card_type": "Mastercard test",
            "card_number": "5100006556502135",
            "card_expires": "01/2031",
            "cvv": "873"
        },
        "internet": {
            "ipv4": "198.51.100.17",
            "ipv6": "2001:db8:63b7:57b7::47ff",
            "user_agent": "Mozilla/5.0 (X11; Linux x86_64) Gecko/20100101 Firefox/124.0"
        },
        "ids": {
            "national_id": "TEST-US-705137",
            "passport": "US47653721",
            "drivers_license": "US-4877-1620"
        },
        "tracking": {
            "ups": "1Z3636546B906FD3DF",
            "fedex": "952140300608"
        }
    }
}
接続 · 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.