The Swedish government monopoly liquor store API providing product catalogues, store locations, inventory, and pricing data. Useful for practising structured API ingestion, building retail analytics pipelines, and learning how to work with government-published commercial datasets in Python.
Engineers use `requests` with Systembolaget's open API to retrieve product listings including name, type, price, alcohol percentage, and country of origin. Data is stored in PostgreSQL and updated daily to track assortment and pricing changes over time.
Systembolaget's structured product catalog enables AI-powered beverage recommendation chatbots for the Swedish market. A RAG system built on this data can answer 'What's a good Swedish wine under 100 SEK?' with accurate, official product information.
# pip install requests pandas
import requests, pandas as pd
resp = requests.get(
"https://api-extern.systembolaget.se/product/v1/product",
headers={"Ocp-Apim-Subscription-Key": "YOUR_API_KEY"},
params={"size": 20, "categoryLevel1": "Röda viner"}
)
df = pd.DataFrame(resp.json()["products"])[["productNameBold", "price", "alcoholPercentage"]]
print(df.head())Official dataset source
More datasets used by Python data engineers.
Access labour market statistics from the US Bureau of Labor Statistics including employment, unemployment, wages, inflation (CPI), and productivity data. Widely used in economic data pipelines for trend analysis, time-series modelling, and government data ingestion workflows.
Access US macroeconomic statistics from the Bureau of Economic Analysis, including GDP, personal income, consumer spending, and international trade data. Ideal for building economic indicator pipelines, loading national accounts data into warehouses, and time-series analysis in Python.
Access real-time company registration data, director information, filing history, and financial statements from the UK Companies House streaming API. Used in data engineering for corporate intelligence pipelines, KYC/AML workflows, entity resolution, and building business analytics systems in Python.