Manor Scraper — Swiss Department Store Prices & Stock avatar

Manor Scraper — Swiss Department Store Prices & Stock

Pricing

from $1.20 / 1,000 result scrapeds

Go to Apify Store
Manor Scraper — Swiss Department Store Prices & Stock

Manor Scraper — Swiss Department Store Prices & Stock

Scrape product data from manor.ch, Switzerland's largest department store chain. Extract names, brands, prices, stock status and images via Manor's own product search API, in German, French or Italian.

Pricing

from $1.20 / 1,000 result scrapeds

Rating

0.0

(0)

Developer

Studio Amba

Studio Amba

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

18 hours ago

Last modified

Categories

Share

Manor Scraper

Pull product data from manor.ch, Switzerland's largest department store chain. This scraper talks directly to Manor's own product search API, so it returns clean, structured data -- brand, price, stock, category, images -- without any HTML parsing or browser rendering.

How to scrape Manor data

Give the actor a search term and it queries Manor's own storefront search API directly, paginating until it hits maxResults or runs out of matching products. There's nothing to configure beyond the search term and language -- no category URLs to hunt down, no cookies, no login.

Under the hood, manor.ch is a Next.js storefront backed by a public GraphQL API (ecom-api.manor.ch/graphql) -- the same endpoint the site itself calls to render search results and category pages. This actor calls that API directly instead of waiting on a browser to render and hydrate the page, which makes it faster and far less likely to break when Manor tweaks its frontend markup.

Manor sells in German, French and Italian across Switzerland's three main language regions. Set locale to get product titles and descriptions back in the matching language -- the same product code returns "Chaussures de handball" under fr and "Handballschuhe" under de.

If you don't provide any input, it defaults to searching for "kleid" (German for "dress") as a demo.

A note on result ordering

Manor's search ranking blends in personalized/recommended results and is not perfectly deterministic between requests -- repeating the exact same search can return a slightly different order. This actor's pagination is built around that: it deduplicates by product code and keeps paging until it hits maxResults or a run of pages stops turning up anything new, so you still get a full, duplicate-free set of results -- just don't expect byte-for-byte identical output on two runs of the same query, page 40+ can shuffle slightly.

Input

FieldTypeDescription
searchQuerystringSearch term, in the language matching locale (e.g. "kleid", "robe", "scarpe")
localestring"de" (default), "fr" or "it" -- controls both the search language and the language of returned titles/descriptions
maxResultsintegerCap on number of products returned (default: 100, max: 5000)
proxyConfigurationobjectApify proxy settings. Manor's search API has no anti-bot protection, so the default Apify proxy is sufficient

What you get back

FieldTypeExample
namestring"Julissa Umlegekleid mit kurzen Flatterärmeln"
brandstring"Phase Eight"
pricenumber | null150.00
originalPricenumber | null299.00 (equal to price when not discounted)
currencystring"CHF"
skustring"10004018604"
productIdstring"10004018604"
eanstring | null"5063683050293"
inStockboolean | nulltrue (null only if the source gives no availability signal)
stockLevelinteger | null1
urlstringFull product page URL
imageUrlstring | nullPrimary product image
imageUrlsarrayProduct image URLs
categorystring | null"woman-clothing-dresses-casual-dresses"
categoriesarray | nullFull breadcrumb path, e.g. ["woman", "woman-clothing", "woman-clothing-dresses", "woman-clothing-dresses-casual-dresses"]
descriptionstring | nullPlain-text product description
ratingnumber | null4.2 on a 0-5 scale, null when the product has zero reviews
reviewCountinteger | null12
localestring"de", "fr" or "it" -- language used for this result
scrapedAtstringISO timestamp
searchQuerystringThe search term used to find this product (input echo)

Sample output

{
"name": "Julissa Umlegekleid mit kurzen Flatterärmeln",
"brand": "Phase Eight",
"price": 219.00,
"originalPrice": 219.00,
"currency": "CHF",
"sku": "10004230241",
"productId": "10004230241",
"ean": "5063683097878",
"inStock": true,
"stockLevel": 1,
"url": "https://www.manor.ch/p/10004230241",
"imageUrl": "https://i8.amplience.net/i/manor/10004230238_01",
"imageUrls": ["https://i8.amplience.net/i/manor/10004230238_01"],
"category": "woman-clothing-dresses-cocktail-dresses",
"categories": ["woman", "woman-clothing", "woman-clothing-dresses", "woman-clothing-dresses-cocktail-dresses"],
"description": "Das Julissa Umlegekleid verfügt über einen V-Ausschnitt und kurze Flatterärmel...",
"rating": null,
"reviewCount": 0,
"locale": "de",
"scrapedAt": "2026-09-09T09:09:37.873Z",
"searchQuery": "kleid"
}

Use cases

  • Price monitoring -- track Manor's price changes over time on the brands and categories you sell against, including "was" price whenever an item is discounted.
  • Assortment research -- Manor stocks its own private-label lines alongside hundreds of third-party fashion, beauty and home brands (Nike, Phase Eight, Levi's, essence, LEGO and more); see what it carries and at what price points across Switzerland's three language regions.
  • Multi-language catalogue comparison -- pull the same catalogue in German, French and Italian to check translation coverage or feed a multilingual product database.
  • Stock and availability tracking -- inStock/stockLevel give a live read on which items are selling through.
  • Market comparison -- as Switzerland's largest department store chain, Manor is a useful comparison point against other Swiss and European multi-category retailers.

Coverage

v1 covers the Swiss flagship storefront (www.manor.ch, CHF pricing) across all three official languages (German, French, Italian).

Performance and cost

The scraper hits Manor's own GraphQL search API directly -- no browser rendering, no HTML parsing -- so it's fast. A run of 100 products typically completes in a few seconds. This actor charges $0.005 per run (start fee) plus $0.002 per result -- a 100-product run costs about $0.205. Your run's usage cost only settles after the run reports SUCCEEDED -- checking cost mid-run will undercount it.

Limitations

  • Keyword search only, matching Manor's own on-site search in the language you select. It does not accept direct category or product URLs.
  • Manor's search ranking blends in recommendation/personalization results and isn't fully deterministic between requests -- see "A note on result ordering" above. This actor dedupes and stall-detects to still return a clean, duplicate-free set, but page order can shift slightly run to run.
  • No explicit review-count-independent rating field -- rating is only populated when reviewCount is greater than zero, so a genuine "no reviews yet" product correctly comes back null rather than a misleading 0.
  • originalPrice equals price when an item isn't currently discounted -- there is no separate "on sale" boolean, compare the two fields yourself.
  • v1 targets the Swiss flagship catalogue (CHF) only.

If you're covering European department-store and multi-category retail more broadly, also check out:

Support

Found an issue or need a different locale covered? Open an issue on this actor's Apify Store page and we'll take a look.