Fake Data Generator

Generate names, emails, addresses, lorem text and JSON records in bulk.

Ms. Christine McKenzie
Lori Murray
Corrine Hammes
Jessica Wunsch
Kyla Brown
Boris Zulauf
Samara Herzog V
Emma Lebsack
Beverly Brakus-Herzog
Dandre Harber

Generated locally with Faker. Use a seed for deterministic output. Max 1000 items per run.

About Fake Data Generator

Fake Data Generator produces realistic-looking sample data without needing a schema: names, emails, addresses, phone numbers, lorem ipsum text, dates, and ready-made JSON records. Pick the shape you want — single value, a column of many, or an array of objects with multiple fields — and the tool emits as many rows as you ask for. Faker is the underlying engine, so the output mimics real data closely enough to spot UI bugs that lorem-ipsum-only tests miss.

Reach for it whenever you need filler that feels real: a Storybook prop, a quick demo, a screen recording, a load-test seed, or a CSV import that exercises validation. JSON Mock Generator is the schema-driven counterpart — feed it a JSON Schema and it produces records that conform exactly. Use Fake Data when shape is flexible and you just want plausible values; use Mock Generator when the consumer expects a specific structure.

Examples

Input
shape: { name, email, joined }
count: 3
Output
[
  { "name": "Ada Lovelace", "email": "ada.lovelace@example.com", "joined": "2024-08-12" },
  { "name": "Grace Hopper", "email": "grace.hopper@example.com", "joined": "2025-02-03" },
  { "name": "Alan Turing", "email": "alan.turing@example.com", "joined": "2024-11-19" }
]

Three records with realistic names, deterministic example.com email domains, and ISO dates within the last year.

Frequently asked questions

How is this different from JSON Mock Generator?

Fake Data produces canned shapes (a person, an address, lorem ipsum) without a schema. Mock Generator is schema-driven — you supply a JSON Schema and the records match it, including the exact set of required fields. Use Fake Data when shape is flexible; use Mock Generator when the consumer expects a specific JSON Schema.

Are emails and phone numbers safe to use?

Yes. Generated emails use the `example.com` / `example.org` domains reserved by RFC 2606 for documentation; phone numbers use the 555-prefix block reserved for fictional use. Neither will reach a real mailbox or phone.

Can I get the same data back later?

Yes — set a seed value before generating. The same seed plus the same shape produces the same output every time, which is useful for reproducible tests and demos.

How much data can it generate at once?

Up to a few thousand records comfortably. The tool runs in your browser, so very large batches (hundreds of thousands of rows) are best generated server-side; for browser use, generate a representative sample and replicate as needed.