Saltar al contenido

Generador de datos ficticios

Genera registros de usuarios falsos - nombre, email, teléfono, dirección - en JSON o CSV.

Funciona en tu navegador

Elige cantidad y campos, devolvemos un bloque JSON, CSV o INSERT SQL. Nombres, emails y direcciones combinados al azar desde un dataset incluido.

Cómo usarla

  1. Pick count and fields

    Number of rows, and which fields to include.

  2. Pick the output format

    JSON array, CSV with header, or SQL INSERT statements.

  3. Copy or download

    Hit Copy to grab the string, or paste it into your seeding script.

¿Qué es?

A mock data generator builds realistic-looking but synthetic records for seeding databases, populating UI mock-ups or stress-testing API endpoints. The fields are randomly combined from a small bundled dataset - names, surnames, cities, streets, companies, job titles - so output is unique each run and free of any real personal data.

Cuándo usarla

Seeding a development database; building a Figma-style mock-up where '50 user rows' is more convincing than 'Lorem Ipsum'; load-testing a search or filter UI; populating a CSV import flow's sample file. Avoid using it for anything customer-facing or for analytics; the data is too synthetic to behave like real users.

Errores comunes

Using the generated emails to test real email-sending - example.com bounces, which is correct behaviour but breaks tests that assume delivery. Forgetting to set a seed when reproducibility matters - this generator is random, so two runs produce different output. And generating gigabytes worth of records in the browser when you really want a server-side faker library; this tool tops out around 10,000 rows.

Preguntas frecuentes

Are the emails / phones real?
No. Emails use the example.com / example.org domains reserved by RFC 2606 for this purpose. Phone numbers use the 555 prefix (US TV / movie convention for non-real numbers) where possible.
How big can I generate?
Up to 10,000 records per click - the browser can comfortably hold that as a string. For larger seeds you usually want a server-side generator (faker, mimesis) anyway.

Más en esta categoría