# Open Brewery DB Scraper

**Use case:** 

Extract California microbreweries from Open Brewery DB, sorted by name. Get brewery names, types, addresses and contact details as structured data.

## Input

```json
{
  "maxItems": 5,
  "state": "California",
  "breweryType": "micro",
  "sort": "name"
}
```

## Output

```json
{
  "id": {
    "label": "Id",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "breweryType": {
    "label": "Brewery Type",
    "format": "text"
  },
  "address1": {
    "label": "Address1",
    "format": "text"
  },
  "address2": {
    "label": "Address2",
    "format": "text"
  },
  "address3": {
    "label": "Address3",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "stateProvince": {
    "label": "State Province",
    "format": "text"
  },
  "postalCode": {
    "label": "Postal Code",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "websiteUrl": {
    "label": "Website Url",
    "format": "link"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Open Brewery DB Scraper](https://apify.com/parseforge/open-brewery-db-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/open-brewery-db-scraper) to learn more, explore other use cases, and run it yourself.