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

Marleyrose Belanbeth Vallinworth

Raw IFID object
{
    "object": "ifid.identity",
    "schema": "ifid.v1",
    "id": "ID-779480FE",
    "generated_at": "2026-06-16T18:53:38+00:00",
    "summary": {
        "full_name": "Marleyrose Belanbeth Vallinworth",
        "gender": "female",
        "age": 84,
        "country": {
            "code": "us",
            "label": "United States"
        },
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "email": "[email protected]",
        "occupation": "Data analyst"
    },
    "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-779480FE",
        "generated_at": "2026-06-16T18:53:38+00:00",
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "country": {
            "code": "us",
            "label": "United States"
        },
        "gender": "female",
        "name": {
            "title": "Dr.",
            "first": "Marleyrose",
            "middle": "Belanbeth",
            "last": "Vallinworth",
            "full": "Marleyrose Belanbeth Vallinworth"
        },
        "address": {
            "line1": "2060 Main St",
            "line2": "",
            "city": "San Diego, CA",
            "postcode": "65597"
        },
        "contact": {
            "email": "[email protected]",
            "username": "marleyrosevallinworth4262",
            "password": "F!gU5LxqCeCBsx",
            "phone": "+1 964-925-7442"
        },
        "personal": {
            "birth_date": "1942-02-09",
            "age": 84,
            "blood_type": "B-",
            "height_cm": 152,
            "weight_kg": 73,
            "eye_color": "Green",
            "hair_color": "Blond"
        },
        "employment": {
            "occupation": "Data analyst",
            "company": "Cedar & Finch",
            "salary": {
                "currency": "USD",
                "amount": 62215
            }
        },
        "finance": {
            "bank": "Sample Credit Union",
            "iban": "US89 TEST 4712 2787 5214",
            "card_type": "Visa test",
            "card_number": "4000009252471209",
            "card_expires": "08/2029",
            "cvv": "376"
        },
        "internet": {
            "ipv4": "198.51.100.67",
            "ipv6": "2001:db8:4005:ac51::da4d",
            "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4) AppleWebKit/605.1.15 Version/17.4 Safari/605.1.15"
        },
        "ids": {
            "national_id": "TEST-US-253365",
            "passport": "US39730547",
            "drivers_license": "US-1329-1402"
        },
        "tracking": {
            "ups": "1Z1C5754CFA45EB547",
            "fedex": "935017011541"
        }
    }
}
接続 · 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.