# Allrecipes Chicken Recipe Data Extractor

**Use case:** 

Extract up to 200 chicken recipes from Allrecipes. Get detailed ingredients, cooking instructions, and nutritional information.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.allrecipes.com/search?q=Chicken"
    }
  ],
  "query": "chicken",
  "results_wanted": 200,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "name": {
    "label": "Recipe Name",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "image": {
    "label": "Image",
    "format": "image"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "object"
  },
  "prepTime": {
    "label": "Prep Time",
    "format": "text"
  },
  "cookTime": {
    "label": "Cook Time",
    "format": "text"
  },
  "totalTime": {
    "label": "Total Time",
    "format": "text"
  },
  "servings": {
    "label": "Servings",
    "format": "text"
  },
  "ingredients": {
    "label": "Ingredients",
    "format": "array"
  },
  "instructions": {
    "label": "Instructions",
    "format": "array"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "cuisine": {
    "label": "Cuisine",
    "format": "text"
  },
  "keywords": {
    "label": "Keywords",
    "format": "text"
  },
  "nutrition": {
    "label": "Nutrition Info",
    "format": "object"
  },
  "url": {
    "label": "Recipe URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Allrecipes Scraper](https://apify.com/shahidirfan/allrecipes-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/allrecipes-scraper) to learn more, explore other use cases, and run it yourself.