# Find SaaS Pricing Pages from Homepages

**Use case:** 

Provide company homepages and the actor auto-discovers each pricing page, then extracts plans and prices into structured JSON.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.dropbox.com"
    },
    {
      "url": "https://www.airtable.com"
    }
  ],
  "useAI": true,
  "discoverPricingPage": true,
  "country": "US",
  "extractFeatureDetails": true,
  "useBrowser": "auto",
  "includeScreenshot": false,
  "detectChanges": false,
  "previousDatasetId": "",
  "datasetName": "",
  "webhookUrl": "",
  "maxConcurrency": 5,
  "maxRequestsPerCrawl": 40,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "pricingPageUrl": {
    "label": "Pricing Page",
    "format": "link"
  },
  "totalPlansFound": {
    "label": "Plans",
    "format": "number"
  },
  "hasFreeTier": {
    "label": "Free Tier",
    "format": "boolean"
  },
  "hasEnterprisePlan": {
    "label": "Enterprise",
    "format": "boolean"
  },
  "defaultCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "extractionConfidence": {
    "label": "Confidence",
    "format": "text"
  },
  "hasChanges": {
    "label": "Changes Detected",
    "format": "boolean"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [SaaS Pricing & Feature Tracker](https://apify.com/constructive_calm/saas-pricing-tracker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/constructive_calm/saas-pricing-tracker) to learn more, explore other use cases, and run it yourself.