Synthetic Data Generator avatar

Synthetic Data Generator

Pricing

$3.00/month + usage

Go to Apify Store
Synthetic Data Generator

Synthetic Data Generator

Generate realistic fake data for testing and development. Create profiles, addresses, companies, and transactions using Faker. 50+ locales, deterministic mode, custom schemas.

Pricing

$3.00/month + usage

Rating

0.0

(0)

Developer

Web Harvester

Web Harvester

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

2

Monthly active users

a month ago

Last modified

Share

๐ŸŽญ Generate realistic fake data for testing, development, and demos. Create thousands of profiles, addresses, companies, or transactions instantly using Faker.

Apify Actor License: MIT

๐ŸŽฏ What This Actor Does

Generate unlimited realistic fake data without manual creation:

  • User Profiles - Names, emails, phones, addresses, jobs
  • Companies - Business names, industries, contact info
  • Transactions - Payment records, amounts, statuses
  • Products - E-commerce items with prices, SKUs
  • Custom Schemas - Define your own data structure

๐Ÿš€ Use Cases

Use CaseDescription
TestingPopulate databases with realistic test data
DevelopmentBuild UIs with sample data before backend is ready
DemosCreate compelling product demos with realistic data
Load TestingGenerate thousands of records for stress tests
PrivacyReplace real customer data with fake equivalents
TrainingCreate datasets for ML model development

๐Ÿ“ฅ Input Examples

Generate 1000 User Profiles

{
"count": 1000,
"preset": "profiles",
"locale": "en_US"
}

Generate German Companies

{
"count": 500,
"preset": "companies",
"locale": "de_DE"
}

Custom Schema

{
"count": 100,
"preset": "custom",
"schema": {
"order_id": "uuid4",
"customer_name": "name",
"product": "catch_phrase",
"quantity": "random_int(1, 10)",
"total": "pyfloat(min_value=10, max_value=500, right_digits=2)",
"status": "random_element(['pending', 'shipped', 'delivered'])"
}
}

โš™๏ธ Configuration

ParameterTypeDefaultDescription
countinteger100Number of records (1-100,000)
localestringen_USLanguage/region for data
presetstringprofilesData template to use
seedinteger-For reproducible results
schemaobject-Custom field definitions

Available Presets

PresetFields
profilesname, email, phone, address, job, company
companiesname, industry, address, phone, website, employees
addressesstreet, city, state, postal_code, country, lat/lng
transactionsid, amount, merchant, category, timestamp, status
productsid, name, description, price, category, sku, rating
usersid, username, email, created_at, role, is_active

Supported Locales

๐Ÿ‡บ๐Ÿ‡ธ en_US, ๐Ÿ‡ฌ๐Ÿ‡ง en_GB, ๐Ÿ‡ฉ๐Ÿ‡ช de_DE, ๐Ÿ‡ซ๐Ÿ‡ท fr_FR, ๐Ÿ‡ช๐Ÿ‡ธ es_ES, ๐Ÿ‡ฎ๐Ÿ‡น it_IT, ๐Ÿ‡ง๐Ÿ‡ท pt_BR, ๐Ÿ‡ฏ๐Ÿ‡ต ja_JP, ๐Ÿ‡จ๐Ÿ‡ณ zh_CN, ๐Ÿ‡ฐ๐Ÿ‡ท ko_KR, ๐Ÿ‡ท๐Ÿ‡บ ru_RU, ๐Ÿ‡ธ๐Ÿ‡ฆ ar_SA, ๐Ÿ‡ฎ๐Ÿ‡ณ hi_IN, ๐Ÿ‡ณ๐Ÿ‡ฑ nl_NL, ๐Ÿ‡ต๐Ÿ‡ฑ pl_PL, ๐Ÿ‡ธ๐Ÿ‡ช sv_SE, ๐Ÿ‡ฉ๐Ÿ‡ฐ da_DK, ๐Ÿ‡ซ๐Ÿ‡ฎ fi_FI, ๐Ÿ‡ณ๐Ÿ‡ด no_NO, ๐Ÿ‡น๐Ÿ‡ท tr_TR

๐Ÿ“ค Output

{
"_index": 1,
"first_name": "John",
"last_name": "Smith",
"email": "john.smith@example.com",
"phone": "+1-555-123-4567",
"birth_date": "1985-03-15",
"address": "123 Main St, Apt 4B",
"city": "New York",
"country": "United States",
"job": "Software Engineer",
"company": "Tech Corp"
}

๐ŸŽจ Custom Schema Field Types

Use any Faker provider:

{
"name": "name",
"email": "email",
"phone": "phone_number",
"address": "address",
"company": "company",
"job": "job",
"text": "paragraph",
"date": "date",
"time": "time",
"uuid": "uuid4",
"url": "url",
"ip": "ipv4",
"price": "pricetag",
"boolean": "boolean",
"color": "color_name",
"country": "country",
"currency": "currency_code",
"credit_card": "credit_card_number",
"iban": "iban",
"random_number": "random_int(1, 100)",
"random_choice": "random_element(['A', 'B', 'C'])"
}

๐Ÿ’ฐ Cost Estimation

RecordsApprox. TimeCompute Units
1,000~2 seconds~0.001
10,000~5 seconds~0.003
100,000~30 seconds~0.02

๐Ÿ”ง Technical Details

  • Language: Python 3.12
  • Library: Faker 24.x
  • Memory: 128MB-512MB
  • Speed: ~50,000 records/second

๐Ÿ“„ License

MIT License - see LICENSE for details.


๐Ÿช Apify Store Listing


Keywords: fake data generator, synthetic data, test data, Faker, mock data, sample data, dummy data, data generation, testing data, development data, random data generator