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

Elerel Belisley Garleyfield

Raw IFID object
{
    "object": "ifid.identity",
    "schema": "ifid.v1",
    "id": "ID-1675DC9D",
    "generated_at": "2026-08-11T22:54:25+00:00",
    "summary": {
        "full_name": "Elerel Belisley Garleyfield",
        "gender": "male",
        "age": 52,
        "country": {
            "code": "us",
            "label": "United States"
        },
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "email": "[email protected]",
        "occupation": "IT support specialist"
    },
    "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-1675DC9D",
        "generated_at": "2026-08-11T22:54:25+00:00",
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "country": {
            "code": "us",
            "label": "United States"
        },
        "gender": "male",
        "name": {
            "title": "Mr.",
            "first": "Elerel",
            "middle": "Belisley",
            "last": "Garleyfield",
            "full": "Elerel Belisley Garleyfield"
        },
        "address": {
            "line1": "9900 Hillcrest Blvd",
            "line2": "",
            "city": "Los Angeles, CA",
            "postcode": "32318"
        },
        "contact": {
            "email": "[email protected]",
            "username": "elerelgarleyfield7333",
            "password": "dzgjBYKoxC7HTD",
            "phone": "+1 405-542-9830"
        },
        "personal": {
            "birth_date": "1973-08-28",
            "age": 52,
            "blood_type": "O-",
            "height_cm": 195,
            "weight_kg": 105,
            "eye_color": "Gray",
            "hair_color": "Blond"
        },
        "employment": {
            "occupation": "IT support specialist",
            "company": "Umbra Textiles",
            "salary": {
                "currency": "USD",
                "amount": 56490
            }
        },
        "finance": {
            "bank": "Demo Trust",
            "iban": "US96 TEST 5527 6219 1989",
            "card_type": "Amex test",
            "card_number": "3400002109168045",
            "card_expires": "03/2030",
            "cvv": "633"
        },
        "internet": {
            "ipv4": "198.51.100.78",
            "ipv6": "2001:db8:4dda:2efe::862",
            "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/124.0 Safari/537.36"
        },
        "ids": {
            "national_id": "TEST-US-426677",
            "passport": "US36679594",
            "drivers_license": "US-3378-1258"
        },
        "tracking": {
            "ups": "1ZF411B66B34C8C9F6",
            "fedex": "368742119437"
        }
    }
}
接続 · 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.