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

Karelana Dananra Samerworth

Raw IFID object
{
    "object": "ifid.identity",
    "schema": "ifid.v1",
    "id": "ID-367095CE",
    "generated_at": "2026-08-02T22:26:45+00:00",
    "summary": {
        "full_name": "Karelana Dananra Samerworth",
        "gender": "female",
        "age": 31,
        "country": {
            "code": "us",
            "label": "United States"
        },
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "email": "[email protected]",
        "occupation": "Technical writer"
    },
    "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-367095CE",
        "generated_at": "2026-08-02T22:26:45+00:00",
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "country": {
            "code": "us",
            "label": "United States"
        },
        "gender": "female",
        "name": {
            "title": "Mrs.",
            "first": "Karelana",
            "middle": "Dananra",
            "last": "Samerworth",
            "full": "Karelana Dananra Samerworth"
        },
        "address": {
            "line1": "7506 Hillcrest Blvd",
            "line2": "",
            "city": "Fort Worth, TX",
            "postcode": "45535"
        },
        "contact": {
            "email": "[email protected]",
            "username": "karelanasamerworth9587",
            "password": "hSKsW3r2GqfCm!",
            "phone": "+1 528-899-0618"
        },
        "personal": {
            "birth_date": "1995-06-02",
            "age": 31,
            "blood_type": "B-",
            "height_cm": 153,
            "weight_kg": 63,
            "eye_color": "Amber",
            "hair_color": "Brown"
        },
        "employment": {
            "occupation": "Technical writer",
            "company": "Harborlight Studio",
            "salary": {
                "currency": "USD",
                "amount": 48355
            }
        },
        "finance": {
            "bank": "Sandbox Financial",
            "iban": "US81 TEST 4607 5092 2478",
            "card_type": "Visa test",
            "card_number": "4000006861495785",
            "card_expires": "07/2028",
            "cvv": "157"
        },
        "internet": {
            "ipv4": "198.51.100.86",
            "ipv6": "2001:db8:b30:c9e1::486",
            "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-947264",
            "passport": "US43355027",
            "drivers_license": "US-6132-7249"
        },
        "tracking": {
            "ups": "1ZC0D65E3FD0C5D656",
            "fedex": "749154697129"
        }
    }
}
接続 · 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.