# Compare Two Franchises Side by Side — Full FDD Detail

**Use case:** 

Pull complete FDD data for any two brands — investment breakdown, every fee, three-year unit history — Dunkin vs Great Clips as a ready-made example.

## Input

```json
{
  "brands": [
    "dunkin",
    "great-clips"
  ],
  "categories": [],
  "requireItem19": false,
  "sortBy": "health_score",
  "limit": 50,
  "includeInvestmentBreakdown": true,
  "includeFeeSchedule": true,
  "includeUnitHistory": true
}
```

## Output

```json
{
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "initial_investment_usd_low": {
    "label": "Investment low ($)",
    "format": "number"
  },
  "initial_investment_usd_high": {
    "label": "Investment high ($)",
    "format": "number"
  },
  "franchise_fee_usd_low": {
    "label": "Franchise fee ($)",
    "format": "number"
  },
  "royalty_pct": {
    "label": "Royalty %",
    "format": "number"
  },
  "ad_fund_pct": {
    "label": "Ad fund %",
    "format": "number"
  },
  "average_gross_revenue_usd": {
    "label": "Avg unit revenue ($)",
    "format": "number"
  },
  "payback_period_years": {
    "label": "Payback (yrs)",
    "format": "number"
  },
  "health_score": {
    "label": "Health",
    "format": "integer"
  },
  "fdd_year": {
    "label": "FDD year",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Franchise Investment Data — FDD Costs, Fees & Unit Counts](https://apify.com/jakedata/franchise-investment-data) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jakedata/franchise-investment-data) to learn more, explore other use cases, and run it yourself.