# Build a healthy snack product shortlist

**Use case:** 

Find snack products with Nutri-Score A and return a bounded product shortlist for merchandising, research, or nutrition analysis workflows.

## Input

```json
{
  "searchQuery": "snack",
  "categories": "snacks",
  "country": "united-states",
  "nutriScore": "a",
  "maxResults": 100
}
```

## Output

```json
{
  "productName": {
    "label": "Product",
    "format": "text"
  },
  "brands": {
    "label": "Brand",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "text"
  },
  "nutriScore": {
    "label": "Nutri-Score",
    "format": "text"
  },
  "calories": {
    "label": "Calories/100g",
    "format": "number"
  },
  "proteins": {
    "label": "Proteins/100g",
    "format": "number"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "productUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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