# Yummly Chicken Recipe Scraper

**Use case:** 

Search Yummly for chicken recipes. Get recipe titles, ingredients, ratings, cook times and nutrition details as clean JSON output.

## Input

```json
{
  "searchQuery": "chicken",
  "maxItems": 5
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "totalTime": {
    "label": "Total Time",
    "format": "text"
  },
  "servings": {
    "label": "Servings",
    "format": "number"
  },
  "difficulty": {
    "label": "Difficulty",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Yummly Scraper | Personalized Recipes Database](https://apify.com/parseforge/yummly-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/yummly-scraper) to learn more, explore other use cases, and run it yourself.