# Untappd Beer Review Extractor Example

**Use case:** 

Extract one public Untappd beer page with aggregate beer metrics and recent check-in review comments for monitoring.

## Input

```json
{
  "searchTerms": [
    "ipa"
  ],
  "startUrls": [
    {
      "url": "https://untappd.com/b/side-project-brewing-m-j-k-2021/4192464"
    }
  ],
  "scrapeTopRated": true,
  "maxItems": 20,
  "maxCheckinsPerBeer": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "entityType": {
    "label": "Type"
  },
  "beerName": {
    "label": "Beer"
  },
  "breweryName": {
    "label": "Brewery"
  },
  "style": {
    "label": "Style"
  },
  "rating": {
    "label": "Rating"
  },
  "ratingsCount": {
    "label": "Ratings"
  },
  "totalCheckins": {
    "label": "Total check-ins"
  },
  "monthlyCheckins": {
    "label": "Monthly check-ins"
  },
  "abv": {
    "label": "ABV"
  },
  "ibu": {
    "label": "IBU"
  },
  "userName": {
    "label": "Check-in user"
  },
  "comment": {
    "label": "Comment"
  },
  "checkinRating": {
    "label": "Check-in rating"
  },
  "beerUrl": {
    "label": "Beer URL"
  },
  "sourceUrl": {
    "label": "Source URL"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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