# Fake CRM contact data generator

**Use case:** 

Generate realistic fake contacts with names, emails, phones, addresses, companies, and job titles for CRM testing.

## Input

```json
{
  "count": 25,
  "locale": "en_US",
  "fields": [
    "firstName",
    "lastName",
    "email",
    "phone",
    "streetAddress",
    "city",
    "country",
    "companyName",
    "jobTitle"
  ],
  "seed": 12345
}
```

## Output

```json
{
  "firstName": {
    "label": "First Name"
  },
  "lastName": {
    "label": "Last Name"
  },
  "fullName": {
    "label": "Full Name"
  },
  "email": {
    "label": "Email"
  },
  "phone": {
    "label": "Phone"
  },
  "username": {
    "label": "Username"
  },
  "streetAddress": {
    "label": "Street"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "zipCode": {
    "label": "ZIP"
  },
  "country": {
    "label": "Country"
  },
  "companyName": {
    "label": "Company"
  },
  "jobTitle": {
    "label": "Job Title"
  },
  "department": {
    "label": "Department"
  },
  "creditCardNumber": {
    "label": "Card Number"
  },
  "creditCardType": {
    "label": "Card Type"
  },
  "iban": {
    "label": "IBAN"
  },
  "price": {
    "label": "Price"
  },
  "url": {
    "label": "URL"
  },
  "ipv4": {
    "label": "IPv4"
  },
  "userAgent": {
    "label": "User Agent"
  },
  "uuid": {
    "label": "UUID"
  },
  "boolean": {
    "label": "Boolean"
  },
  "number": {
    "label": "Number"
  }
}
```

## About this Actor

This example demonstrates how to use [Fake Test Data Generator](https://apify.com/automation-lab/fake-test-data-generator) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/fake-test-data-generator) to learn more, explore other use cases, and run it yourself.