# Wendy's Combo Price Comparison: Dallas vs Fort Worth

**Use case:** 

Wendy's combo meal price comparison across Dallas, Fort Worth, and Plano shows how the same Dave's Double or Baconator combo is priced at each nearby store in one run. Each row lists the combo name, price, and the cross-store price range and rank, so you can spot the cheapest location in the Dallas-Fort Worth metro. Add more Texas addresses to widen the comparison.

## Input

```json
{
  "mode": "storeSnapshot",
  "addresses": [
    "Dallas, TX 75201",
    "Fort Worth, TX 76102",
    "Plano, TX 75024"
  ],
  "restaurantIds": [],
  "maxStoresPerAddress": 1,
  "searchRadiusMiles": 25,
  "categories": [],
  "dayPart": "all",
  "onlyAvailable": true,
  "onlyCombos": true,
  "onlyLimitedTimeOffers": false,
  "includeFullNutrition": false,
  "includeModifiers": false,
  "includeIngredientsAndAllergens": false,
  "includeImages": false,
  "outputMode": "snapshot",
  "stateName": "default",
  "maxItems": 60,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "itemName": {
    "label": "Item",
    "format": "string"
  },
  "restaurantId": {
    "label": "Restaurant",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "runPriceMin": {
    "label": "Low",
    "format": "number"
  },
  "runPriceMax": {
    "label": "High",
    "format": "number"
  },
  "runPriceSpreadAmount": {
    "label": "Spread",
    "format": "number"
  },
  "runPriceRank": {
    "label": "Rank",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Wendy's Menu Scraper: Store Prices, Nutrition, and Changes](https://apify.com/getascraper/wendys-menu-prices-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/getascraper/wendys-menu-prices-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/getascraper/wendys-menu-prices-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
