Discover/systembolaget.se API
live

systembolaget.se APIwww.systembolaget.se

Search and retrieve wine, beer, spirits, and cider from Systembolaget's full catalog. Returns price, vintage, taste profiles, grapes, country, and more.

Endpoints
2
Updated
3mo ago
Try it
Page number (1-based)
Text search query (e.g., 'barolo', 'riesling', 'IPA')
Country filter (e.g., 'Italien', 'Frankrike', 'Sverige', 'Storbritannien')
Sort field: Score, Price, Name, Volume
Category filter: Vin, Öl, Sprit, Cider & blanddrycker, Alkoholfritt
Maximum price in SEK
Minimum price in SEK
Results per page (max 30)
Sort direction: Ascending, Descending
api.parse.bot/scraper/69d3b8ae-0e82-416f-8ff4-c6c2c7db7f34/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/69d3b8ae-0e82-416f-8ff4-c6c2c7db7f34/search_products?query=IPA&category=%C3%96l&page_size=3' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Search for products by text query with optional filters for category, country, and price range. Supports pagination and sorting. Returns paginated results with product details.

Input
ParamTypeDescription
pageintegerPage number (1-based)
querystringText search query (e.g., 'barolo', 'riesling', 'IPA')
countrystringCountry filter (e.g., 'Italien', 'Frankrike', 'Sverige', 'Storbritannien')
sort_bystringSort field: Score, Price, Name, Volume
categorystringCategory filter: Vin, Öl, Sprit, Cider & blanddrycker, Alkoholfritt
max_pricestringMaximum price in SEK
min_pricestringMinimum price in SEK
page_sizeintegerResults per page (max 30)
sort_directionstringSort direction: Ascending, Descending
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "products": "array of product objects with fields: product_id, product_number, name, name_thin, beverage_type, beverage_subtype, beverage_style, custom_category, vintage, producer, supplier, country, origin_level1, origin_level2, price, volume, volume_text, alcohol_percentage, taste, usage, color, taste_symbols, taste_clocks, grapes, is_organic, is_kosher, is_ethical, assortment, packaging, seal, sugar_content_gram_per_100ml, image_url, is_out_of_stock",
    "next_page": "integer or null, next page number",
    "page_size": "integer results per page",
    "total_pages": "integer total number of pages",
    "total_results": "integer total number of matching products"
  },
  "sample": {
    "data": {
      "page": 1,
      "products": [
        {
          "name": "Miss Behave IPA",
          "seal": null,
          "color": "Oklar, gulbrun färg.",
          "price": 29.9,
          "taste": "Nyanserad, fruktig smak med tydlig beska...",
          "usage": "Serveras vid 8-10°C som sällskapsdryck...",
          "grapes": [],
          "volume": 330,
          "country": "Sverige",
          "vintage": null,
          "producer": "Nils Oscar",
          "supplier": "Nils Oscar AB",
          "image_url": "https://product-cdn.systembolaget.se/productimages/38496741/38496741",
          "is_kosher": false,
          "name_thin": "Miss Behave IPA",
          "packaging": "Burk",
          "assortment": "Lokalt & Småskaligt",
          "is_ethical": false,
          "is_organic": false,
          "product_id": "38496741",
          "volume_text": "330 ml",
          "taste_clocks": {
            "body": 7,
            "casque": 1,
            "fruitacid": 0,
            "roughness": 0,
            "smokiness": 0,
            "sweetness": 2,
            "bitterness": 7
          },
          "beverage_type": "Öl",
          "origin_level1": null,
          "origin_level2": null,
          "taste_symbols": [
            "Lamm",
            "Nöt",
            "Sällskapsdryck"
          ],
          "beverage_style": "India pale ale (IPA)",
          "product_number": "5130815",
          "custom_category": "Öl, Ale, India pale ale (IPA)",
          "is_out_of_stock": false,
          "beverage_subtype": "Ale",
          "alcohol_percentage": 6,
          "sugar_content_gram_per_100ml": 0
        }
      ],
      "next_page": 2,
      "page_size": 3,
      "total_pages": 429,
      "total_results": 1285
    },
    "status": "success"
  }
}

About the systembolaget.se API

The Systembolaget API provides 2 endpoints to search and retrieve product data from Sweden's state-owned alcohol retailer. Use search_products to query the full catalog by text, category, country, and price range, then call get_product_details with the returned product_number to fetch granular fields including vintage year, grape varieties, taste description, serving suggestion, and volume in milliliters.

Search the Catalog

The search_products endpoint accepts a free-text query (e.g., 'barolo', 'IPA', 'riesling') alongside optional filters: category (one of Vin, Öl, Sprit, Cider & blanddrycker, Alkoholfritt), country (e.g., 'Italien', 'Frankrike', 'Sverige'), min_price and max_price in SEK, and a sort_by field accepting Score, Price, Name, or Volume. Results are paginated — up to 30 per page — and each product object includes product_id, product_number, name, name_thin, beverage_type, beverage_subtype, and beverage_style. The total_results and total_pages fields let you iterate through the full result set.

Product Details

Pass any product_number from search results to get_product_details for the full record. The response includes price (in SEK), volume (in ml), country, vintage (year string or null), color, grapes (array of variety names), taste, usage (serving suggestion), and a seal field for any certification designations. Fields like taste and usage reflect the official Swedish-language descriptions used on the retail site.

Coverage and Language

The catalog covers all actively listed products across Systembolaget's assortment categories, including their permanent range and special-order items. Country names and category values are in Swedish (e.g., 'Italien' not 'Italy'), which matters when constructing filter queries. Products without a vintage, grapes, or taste note return null for those fields — common for spirits, beers, and non-alcoholic items.

Common use cases
  • Build a wine finder app that filters by country and price range using min_price, max_price, and country params
  • Aggregate vintage data across a region by paginating search_products with a country filter and extracting vintage from detail calls
  • Create a grape-variety browser by fetching grapes arrays from get_product_details across the Vin category
  • Track price changes over time by periodically calling get_product_details and storing the price field per product_number
  • Build a taste-profile recommender using the taste, color, and beverage_style fields returned in product details
  • Generate a catalog export of all Swedish beers by querying Öl category with country set to 'Sverige' and paginating results
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Systembolaget provide an official public developer API?+
Systembolaget does not offer a publicly documented developer API. Product data is accessible through their website at systembolaget.se, but there is no official REST or GraphQL API available for third-party developers.
What does `search_products` return versus `get_product_details`?+
search_products returns a paginated list with summary fields: product_id, product_number, name, beverage_type, beverage_subtype, and beverage_style. It does not include taste, grapes, vintage, or price — those fields are only available by calling get_product_details with the product_number from the search result.
Do country and category filter values need to be in Swedish?+
Yes. The country parameter expects Swedish-language country names (e.g., 'Italien', 'Frankrike', 'Spanien'), and the category values are also Swedish (e.g., 'Vin', 'Öl', 'Sprit'). Passing English equivalents will return no results.
Does the API include store stock levels or availability by location?+
Not currently. The API covers catalog-level data — product details, pricing, taste notes, and categorization — but does not expose per-store inventory or regional availability. You can fork this API on Parse and revise it to add an endpoint that returns stock levels by store location.
Is there a way to retrieve user reviews or ratings for products?+
Not currently. The available fields cover official product attributes such as taste, usage, grapes, and color, but no user-generated reviews or aggregate ratings are returned. You can fork this API on Parse and revise it to add a reviews or ratings endpoint if that data is accessible on the source.
Page content last updated . Spec covers 2 endpoints from www.systembolaget.se.
Related APIs in EcommerceSee all →
mouser.com API
mouser.com API
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
woocommerce.com API
Browse and search thousands of WooCommerce extensions, themes, and business services from the official marketplace while accessing detailed product information, user reviews, and ratings. Integrate marketplace data, blog content, and documentation directly into your applications to help users discover and learn about WooCommerce solutions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.