Language
English

Fake Data

Generate reproducible localized test data from a seed

简体中文
JSON
Output
10 items
[
  {
    "id": 1,
    "name": "林若溪",
    "email": "[email protected]",
    "phone": "15462616298",
    "createdAt": "2025-04-16T00:00:00.000Z"
  },
  {
    "id": 2,
    "name": "苏安然",
    "email": "[email protected]",
    "phone": "18303942765",
    "createdAt": "2025-03-12T00:00:00.000Z"
  },
  {
    "id": 3,
    "name": "许若溪",
    "email": "[email protected]",
    "phone": "15520385637",
    "createdAt": "2024-07-23T00:00:00.000Z"
  },
  {
    "id": 4,
    "name": "周子涵",
    "email": "[email protected]",
    "phone": "16548351859",
    "createdAt": "2023-01-08T00:00:00.000Z"
  },
  {
    "id": 5,
    "name": "许安然",
    "email": "[email protected]",
    "phone": "18619761254",
    "createdAt": "2023-08-24T00:00:00.000Z"
  },
  {
    "id": 6,
    "name": "陈若溪",
    "email": "[email protected]",
    "phone": "15393714824",
    "createdAt": "2023-05-12T00:00:00.000Z"
  },
  {
    "id": 7,
    "name": "苏子涵",
    "email": "[email protected]",
    "phone": "17320607605",
    "createdAt": "2024-04-19T00:00:00.000Z"
  },
  {
    "id": 8,
    "name": "周明哲",
    "email": "[email protected]",
    "phone": "17856516521",
    "createdAt": "2025-09-24T00:00:00.000Z"
  },
  {
    "id": 9,
    "name": "许嘉宁",
    "email": "[email protected]",
    "phone": "13910484303",
    "createdAt": "2023-10-21T00:00:00.000Z"
  },
  {
    "id": 10,
    "name": "苏明哲",
    "email": "[email protected]",
    "phone": "19181141044",
    "createdAt": "2024-05-16T00:00:00.000Z"
  }
]

togotools.top technical reference

Technical reference

Generate fake data locally in your browser for testing and development. Supports Chinese and English names, emails, and addresses. Output as JSON, CSV, or SQL with fixed seeds for reproducibility.

Core features

  • Generates fake data records with names, emails, phone numbers, addresses, and more.
  • Supports both Chinese (zh-CN) and English (en) data locales.
  • Output as JSON, CSV, or SQL format.
  • Fixed seed support: same seed and config always produce identical data for reproducibility.
  • Generate 1-500 records with one-click random seed regeneration.

Example: generated JSON

In fixed seed mode, the same seed and configuration always generate identical data, ideal for deterministic test cases. Random seed mode produces different data each time.

json
[
  {
    "name": "John Smith",
    "email": "[email protected]",
    "phone": "555-0123",
    "city": "New York"
  }
]

Limits

  • Field set is fixed and preset; custom field selection is not supported.
  • Maximum 500 records; excess is truncated.
  • Generated emails and phone numbers are fictional and do not correspond to real individuals.

Frequently asked questions

What is a seed?

A seed is the initial value for the pseudo-random number generator. The same seed with the same config always produces identical data, useful for reproducing test results. Click the random seed button for new non-reproducible data.

Is the generated data real?

No. All data is fictional. Names, emails, and phone numbers do not correspond to any real person. For development and testing purposes only.