# Seeded ecommerce test catalog generator

**Use case:** 

Generate repeatable fake product catalog records with SKU, product name, category, price, URL, and UUID fields.

## Input

```json
{
  "count": 50,
  "locale": "en",
  "fields": [
    "uuid",
    "sku",
    "productName",
    "productCategory",
    "productDescription",
    "price",
    "url"
  ],
  "seed": 424242
}
```

## 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.