Overview
The LCBO API provides access to the Liquor Control Board of Ontario product catalog, including wines, spirits, and beers sold in Ontario, Canada. It requires a free API key and lets you search products, browse stores, and check inventory. It is a good intermediate-level API for building beverage discovery or inventory tracking apps.
Beginner Tip
Request your free API key at lcboapi.com and include it as a query parameter (?access_key=YOUR_API_KEY) in every request URL — forgetting it returns a 401 error.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from LCBO",
"description": "Alcohol",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
id Unique LCBO product identifier. name Full product name as listed in the LCBO catalog. primary_category Top-level category such as "Wine", "Spirits", or "Beer". price_in_cents Retail price in Canadian cents (divide by 100 for dollars). alcohol_content Alcohol by volume expressed as a percentage multiplied by 100 (e.g., 1350 = 13.5%). origin Country or region of origin for the product. Implementation Example
const url = "https://lcboapi.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "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 →Chomp
The Chomp API provides detailed nutritional data for millions of grocery products and restaurant menu items, including macros, ingredients, and allergen flags.
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.
Kroger
The Kroger API gives developers access to product catalog data, pricing, store locations, and promotions from one of the largest US grocery chains.
Spoonacular
Spoonacular is a comprehensive food and recipe API that provides recipe search, ingredient data, nutritional analysis, and meal planning features.