Lead generation
Open Brewery DB Scraper
Clean, typed brewery, cidery, and brewpub rows from the Open Brewery DB public API — pick a city, state, country, type, name, or lat/lng radius and skip the manual paging and six-param juggling the raw API demands.
Free Apify credit covers a first run. No credit card to try.
What this Actor scrapes
Open Brewery DB is a free, keyless, no-auth JSON API listing breweries, cideries, and brewpubs. It is genuinely useful — but its raw shape is not friendly to a one-off integration: results cap at 200 rows per page, there are six separate by_* filter params spread across list and search endpoints, and telling "this filter matched nothing" apart from "the page paging just ended early" requires a second call to a meta endpoint most integrators never discover.
This Actor collapses all of that into one input form. Pick a search mode — city, state, country, brewery type, name, postal code, or lat/lng distance — and it pages the API on your behalf, validates every record against a typed schema, and hands you back a clean dataset. It also tells the difference, in plain language, between "your filter matched zero breweries" and "the source ran out before your max results cap" — two very different outcomes that look identical if you only watch a row count.
What we handle for you
- 🔁 Automatic pagination — Open Brewery DB caps every request at 200 rows. We page through to your
maxResultslimit or until the source is exhausted, and merge the results transparently. - 🧱 Rate-limit-aware backoff — on
408/429/503responses we back off exponentially and honourRetry-Afterheaders, retrying up to 5 times before surfacing an error. - 🧊 Pydantic-validated rows — every record is typed at write time. A single malformed record is skipped and logged, never crashes the run.
- ✅ Honest empty results — a search mode that genuinely matches nothing finishes successfully with a status message naming the exact filter or query that came up empty — it is never confused with a broken run.
- 🌐 Proxy-ready — an optional Apify Proxy pass-through is available if your network needs it; the public API itself needs no authentication or rotation.
- 💰 Pay-Per-Event pricing — you pay only for records that land in your dataset, plus a small run warm-up fee.
Use cases
- Hospitality lead-gen lists — pull every brewery, cidery, or brewpub in a city or state and load contact details straight into your outreach pipeline.
- Beverage distributor territory mapping — filter by state, city, or postal code to plan sales coverage and route planning.
- POS / CRM vendor onboarding — populate a venue database for a beverage-industry product without hand-rolling API paging.
- Craft-beer travel and tourism apps — build a location-searchable brewery directory using the lat/lng radius search mode.
- Market research — count and map brewery density by state, country, or brewery type (micro, brewpub, regional, etc.).
Input
Paste this into the Apify Console, or send it as the run input over the API. Proxy settings are on by default; you rarely need to touch them.
| Field | Type | Required | What it does |
|---|---|---|---|
searchMode | string | yes | Which filter drives the query. Each mode (other than all) needs its matching field below filled in. |
byCity | string | no | City name. Required when searchMode is city. |
byState | string | no | State or province name, e.g. California. Required when searchMode is state. |
byCountry | string | no | Country name, e.g. United States. Required when searchMode is country. |
byPostal | string | no | Postal / ZIP code. Required when searchMode is postal. |
byType | string | no | Brewery type filter. Required when searchMode is type. |
searchQuery | string | no | Free-text search against brewery names. Required when searchMode is name. |
byDistLat | number | no | Latitude, -90..90. Required together with byDistLng when searchMode is dist. |
byDistLng | number | no | Longitude, -180..180. Required together with byDistLat when searchMode is dist. |
maxResults | integer | no | Maximum number of brewery rows to return across all pages. |
{
"searchMode": "city",
"byCity": "San Diego",
"maxResults": 500,
"proxyConfiguration": {
"useApifyProxy": false
}
} Output
One row per result, schema-validated before it is written. Export JSON, CSV, Excel or XML from the run, or read it over the API.
idnamebrewery_typeaddress_1address_2address_3citystate_provincepostal_codecountrylongitudelatitudephonewebsite_urlstatestreet
{
"id": "5128df48-79fc-4f0f-8b52-d06be54d0cec",
"name": "(405) Brewing Co",
"brewery_type": "micro",
"address_1": "1716 Topeka St",
"address_2": null,
"address_3": null,
"city": "Norman",
"state_province": "Oklahoma",
"postal_code": "73069-8224",
"country": "United States",
"longitude": -97.46818222,
"latitude": 35.25738891,
"phone": "4058160490",
"website_url": "http://www.405brewing.com",
"state": "Oklahoma",
"street": "1716 Topeka St"
} Pricing
| Event | Price | When |
|---|---|---|
| Actor start | $0.20 | Once per run, covers warm-up and proxy session setup. |
| Result emitted | $0.0020 | Per result written to the dataset. |
You pay only for results that land. Cap any run with maxTotalChargeUsd. See pricing & billing for worked examples.
Limitations
- Covers only what Open Brewery DB itself covers — it does not include venues the source doesn't track, and it carries no beer/menu/tap-list data, only venue records.
- Only the current record per
id— no historical/versioned data. - Free-text
byCountry/byStatevalues are passed through unmodified; a near-miss spelling can genuinely return zero rows (the status message will name exactly what was searched).
FAQ
Does this need an API key?
What happens if my filter matches nothing?
Can I search by radius around a coordinate?
searchMode: "dist" with byDistLat/byDistLng. Results come back in the source's distance-sorted order.How current is the data?
Ready to run it?
Open the listing on Apify, paste the input above, and watch rows land. If it ever breaks, it is our problem before it is yours.
Related Actors