# Wendy's Chicken Nutrition Facts and Calories List

**Use case:** 

Wendy's chicken nutrition facts and calories for sandwiches, nuggets, and tenders from the national menu. Each row lists the item, calories, national price, and full nutrition values, ready for diet trackers, meal planning apps, and menu research. Remove the category filter to export every Wendy's item with its nutrition data.

## Input

```json
{
  "mode": "nationalCatalog",
  "addresses": [],
  "restaurantIds": [],
  "maxStoresPerAddress": 1,
  "searchRadiusMiles": 25,
  "categories": [
    "Chicken, Nuggets & More"
  ],
  "dayPart": "all",
  "onlyAvailable": true,
  "onlyCombos": false,
  "onlyLimitedTimeOffers": false,
  "includeFullNutrition": true,
  "includeModifiers": false,
  "includeIngredientsAndAllergens": false,
  "includeImages": false,
  "outputMode": "snapshot",
  "stateName": "default",
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "itemName": {
    "label": "Item",
    "format": "string"
  },
  "categoryName": {
    "label": "Category",
    "format": "string"
  },
  "restaurantId": {
    "label": "Restaurant",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "calories": {
    "label": "Calories",
    "format": "number"
  },
  "isAvailable": {
    "label": "Available",
    "format": "boolean"
  },
  "changeType": {
    "label": "Change",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "string"
  }
}
```

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