Overview
Untappd is a social beer platform that lets users check in beers, rate them, and share with friends. The API provides access to beer data, venue information, and user activity feeds via OAuth 2.0. You will need to register for API access and get user authorization before making requests.
Beginner Tip
Untappd requires OAuth 2.0 authorization, so your app must redirect users to Untappd to grant access before you can call the API on their behalf. Start by registering your app at untappd.com/api/register.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Untappd",
"description": "Social beer sharing",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
bid Unique beer ID on Untappd beer_name Name of the beer beer_abv Alcohol by volume percentage beer_ibu International Bitterness Units rating rating_score Average user rating from 0 to 5 brewery Nested object with brewery name, location, and ID Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://untappd.com/api/docs";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
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
Partially 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.
Chomp
The Chomp API provides detailed nutritional data for millions of grocery products and restaurant menu items, including macros, ingredients, and allergen flags.
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.
Edamam nutrition
The Edamam Nutrition Analysis API parses natural-language food descriptions such as "1 cup of oatmeal" or "200g chicken breast" and returns detailed nutritional breakdowns including calories, macros, vitamins, and minerals.
Edamam recipes
⭐ Beginner's PickThe Edamam Recipe Search API lets you search a database of over 2 million recipes filtered by ingredients, diet labels such as vegan or keto, meal type, and cuisine.