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

Calanon Leoerbert Calisstone

Raw IFID object
{
    "object": "ifid.identity",
    "schema": "ifid.v1",
    "id": "ID-1C2E4DB7",
    "generated_at": "2026-07-19T03:28:20+00:00",
    "summary": {
        "full_name": "Calanon Leoerbert Calisstone",
        "gender": "male",
        "age": 42,
        "country": {
            "code": "us",
            "label": "United States"
        },
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "email": "[email protected]",
        "occupation": "Logistics planner"
    },
    "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-1C2E4DB7",
        "generated_at": "2026-07-19T03:28:20+00:00",
        "name_set": {
            "code": "us",
            "label": "American"
        },
        "country": {
            "code": "us",
            "label": "United States"
        },
        "gender": "male",
        "name": {
            "title": "Mr.",
            "first": "Calanon",
            "middle": "Leoerbert",
            "last": "Calisstone",
            "full": "Calanon Leoerbert Calisstone"
        },
        "address": {
            "line1": "7908 Pine St",
            "line2": "",
            "city": "San Jose, CA",
            "postcode": "52080"
        },
        "contact": {
            "email": "[email protected]",
            "username": "calanoncalisstone8381",
            "password": "pcS2s7iaS4AxS$",
            "phone": "+1 095-790-6687"
        },
        "personal": {
            "birth_date": "1983-09-19",
            "age": 42,
            "blood_type": "B-",
            "height_cm": 190,
            "weight_kg": 99,
            "eye_color": "Blue",
            "hair_color": "Red"
        },
        "employment": {
            "occupation": "Logistics planner",
            "company": "Zenith Components",
            "salary": {
                "currency": "USD",
                "amount": 33689
            }
        },
        "finance": {
            "bank": "Sandbox Financial",
            "iban": "US39 TEST 5440 3550 7680",
            "card_type": "Mastercard test",
            "card_number": "5100001944125935",
            "card_expires": "05/2028",
            "cvv": "200"
        },
        "internet": {
            "ipv4": "198.51.100.253",
            "ipv6": "2001:db8:53b9:f26::cb79",
            "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-229351",
            "passport": "US63644733",
            "drivers_license": "US-8010-4276"
        },
        "tracking": {
            "ups": "1ZE243F78F8516957C",
            "fedex": "333403102539"
        }
    }
}
接続 · 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.