Discover/ahlens.se API
live

ahlens.se APIahlens.se

Search and browse products from Åhléns (ahlens.se). Get prices, brands, images, stock levels, size variants, and detailed product data via 4 endpoints.

Endpoints
4
Updated
3mo ago
Try it
Number of products to skip for pagination.
Sort order: RELEVANCE, PRICE_ASCENDING, PRICE_DESCENDING.
Number of products to return per page.
Search keyword (e.g. 'jacka', 'klänning', 'skor')
api.parse.bot/scraper/ef3bd575-0c0b-465a-8a1a-ebcafeafe50e/<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/ef3bd575-0c0b-465a-8a1a-ebcafeafe50e/search_products?limit=3&query=jacka' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Search for products by keyword. Returns paginated products with brand, title, prices, images, colors, categories, stock levels, and size variants.

Input
ParamTypeDescription
skipintegerNumber of products to skip for pagination.
sortstringSort order: RELEVANCE, PRICE_ASCENDING, PRICE_DESCENDING.
limitintegerNumber of products to return per page.
queryrequiredstringSearch keyword (e.g. 'jacka', 'klänning', 'skor')
Response
{
  "type": "object",
  "fields": {
    "skip": "integer - offset used",
    "sort": "string - sort order used",
    "limit": "integer - page size used",
    "query": "string - search query used",
    "products": "array of product objects with product_key, brand, title, url, selling_price_min/max, list_price_min/max, in_stock, color, swatch_colors, categories, thumbnail, images, badges, is_exclusive, variants",
    "total_hits": "integer - total matching products"
  },
  "sample": {
    "data": {
      "skip": 0,
      "sort": "RELEVANCE",
      "limit": 3,
      "query": "jacka",
      "products": [
        {
          "url": "https://www.ahlens.se/produkter/dam/jeansjacka-med-knytband-yvis-77369fe4-4921-407a-8994-e1dd276eee9b",
          "brand": "Carin Wester",
          "color": "Indigo Blue Denim",
          "title": "Jeansjacka med knytband YVIS",
          "badges": [],
          "images": [
            {
              "url": "https://media.ahlens.se/image/upload/f_auto,t_ProductListMobile/products/bg_removed/61/06/18/61061814_Carin Wester__SS26-05_1.jpg",
              "width": 192,
              "height": 277
            }
          ],
          "in_stock": true,
          "variants": [
            {
              "sku": "61061812",
              "size": "34",
              "label": "34",
              "in_stock": true,
              "list_price": 899,
              "stock_number": 248,
              "regular_price": 899,
              "selling_price": 674.25,
              "historical_price": 899
            }
          ],
          "thumbnail": "https://media.ahlens.se/image/upload/f_auto,t_ProductListMobile/products/bg_removed/61/06/18/61061814_Carin Wester__SS26-05_1.jpg",
          "categories": [
            {
              "name": "Dam",
              "path": "/dam"
            },
            {
              "name": "Jackor",
              "path": "/dam/jackor"
            }
          ],
          "product_key": "77369fe4-4921-407a-8994-e1dd276eee9b",
          "is_exclusive": false,
          "swatch_colors": [
            "#304056"
          ],
          "list_price_max": 899,
          "list_price_min": 899,
          "selling_price_max": 674.25,
          "selling_price_min": 674.25
        }
      ],
      "total_hits": 1013
    },
    "status": "success"
  }
}

About the ahlens.se API

The Åhléns API gives developers access to the full product catalog of Sweden's major department store chain through 4 endpoints covering search, category browsing, product details, and autocomplete. The search_products endpoint returns brand, title, selling and list prices, stock status, color, and size variants for any Swedish-language keyword query, with pagination and sort order controls.

Search and Browse

The search_products endpoint accepts a Swedish-language query parameter (e.g. jacka, klänning, skor) and returns a paginated list of matching products. Each product object includes product_key, brand, title, url, selling_price_min, selling_price_max, list_price_min, list_price_max, in_stock, color, and swatch_c. Pagination is controlled via skip and limit, and results can be sorted by RELEVANCE, PRICE_ASCENDING, or PRICE_DESCENDING. The total_hits field tells you how many products matched in total.

The browse_category endpoint works identically but filters by a category path string rather than a keyword. Valid paths follow the site's URL structure, such as /dam/jackor, /herr/byxor, /barn, or /skonhet. It returns the same product object shape and supports the same pagination and sort parameters.

Product Detail

Once you have a product_key UUID from either the search or browse response, pass it to get_product to retrieve enriched data. This endpoint adds fields not available in list responses: description, material, season, brand_url, and product_category. Use this endpoint when you need structured product attributes beyond pricing and availability.

Autocomplete

The autocomplete endpoint accepts a partial query string and returns four separate arrays: product_suggestions (same product shape as search, without size variants), categories (with title, link, type), brands, and pages. This is useful for building search-as-you-type interfaces or for discovering valid category paths and brand identifiers to use in downstream requests.

Common use cases
  • Track price changes on specific Åhléns products by polling get_product for selling_price_min and list_price_min over time.
  • Build a Swedish fashion price comparison tool by querying search_products with clothing keywords and comparing selling_price_min across brands.
  • Populate a product feed for a Swedish shopping app by paginating through browse_category paths like /dam/jackor or /herr/byxor.
  • Monitor stock availability across a category by checking the in_stock field from browse_category results.
  • Implement a search-as-you-type feature using autocomplete to surface matching products, categories, and brands from partial input.
  • Discover valid category paths and brand slugs by inspecting autocomplete responses before constructing browse_category requests.
  • Aggregate brand presence data across Åhléns categories by collecting brand field values from paginated search_products 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 Åhléns have an official developer API?+
Åhléns does not publish a public developer API or documentation for third-party access to its product catalog.
What does `get_product` return that the search and browse endpoints do not?+
get_product adds four fields absent from list responses: description (free-text product description), material (fabric or material composition), season, and brand_url. It also returns a structured product_category field. You must supply a product_key UUID obtained from a prior search_products or browse_category call.
Does the API return customer reviews or ratings for products?+
Not currently. The API covers product data, pricing, stock levels, material, and category fields. It does not expose review text, star ratings, or review counts. You can fork it on Parse and revise to add a reviews endpoint if that data is accessible on the product pages.
How does pagination work across endpoints?+
Both search_products and browse_category accept skip (number of records to skip) and limit (page size). The response echoes back the skip, limit, and total_hits values so you can calculate how many pages remain. The autocomplete endpoint does not support pagination.
Are prices returned in Swedish kronor, and do they reflect current promotions?+
Prices are as listed on ahlens.se and are denominated in SEK. Each product carries both selling_price_min/max (the current selling price) and list_price_min/max (the original list price), so you can detect when a product is discounted. The API does not expose promotional codes, loyalty pricing, or member-specific prices.
Page content last updated . Spec covers 4 endpoints from ahlens.se.
Related APIs in EcommerceSee all →
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.
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.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
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.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
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.
x-kom.pl API
Access product data from x-kom.pl, a major Polish electronics retailer. Search products by keyword or category, retrieve detailed product pages, customer reviews, Q&A, promotions, flash deals, and physical store locations.