Open Brewery DB API
Overview
Open Brewery DB is a free, open-source API that provides data on breweries, cideries, and bottle shops across multiple countries. No authentication is required, making it one of the easiest APIs to start with. You can search by city, state, type, or name and get back address, coordinates, and website details.
Beginner Tip
Use the by_city or by_state query parameters to narrow results — calling the list endpoint without filters returns thousands of records and will slow down your app.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Open Brewery DB",
"description": "Breweries, Cideries and Craft Beer Bottle Shops",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
id Unique UUID identifying the brewery record. name Official name of the brewery, cidery, or bottle shop. brewery_type Classification such as "micro", "nano", "regional", "brewpub", "large", or "closed". city City where the brewery is located. state State or province of the brewery. latitude GPS latitude as a string; may be null if coordinates are unavailable. website_url Official website URL of the brewery; may be null. Implementation Example
const url = "https://www.openbrewerydb.org/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →BaconMockup
⭐ Beginner's PickBaconMockup is a fun, free API that serves placeholder images featuring bacon — great for filling in image slots during web or app development when you just need something visual.
Coffee
⭐ Beginner's PickThe Coffee API is a dead-simple, no-auth service that returns a random high-quality coffee photo every time you call it.
Foodish
⭐ Beginner's PickFoodish is a fun, free API that returns a random food dish image URL each time you call it.
Fruityvice
⭐ Beginner's PickFruityvice is a free, no-auth API that provides nutritional and botanical data for dozens of common fruits.
Open Food Facts
⭐ Beginner's PickOpen Food Facts is a free, community-driven database of food products from around the world, containing nutritional facts, ingredients, allergens, and Eco-scores.