ZEB Scraper — Belgian Fashion Products & Prices avatar

ZEB Scraper — Belgian Fashion Products & Prices

Pricing

Pay per event

Go to Apify Store
ZEB Scraper — Belgian Fashion Products & Prices

ZEB Scraper — Belgian Fashion Products & Prices

Scrape fashion products, prices, sizes, and variants from ZEB.be. Belgium's popular multi-brand fashion retailer. Supports browsing all products, filtering by collection, and searching by keyword.

Pricing

Pay per event

Rating

0.0

(0)

Developer

Studio Amba

Studio Amba

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Categories

Share

ZEB Scraper

Scrape fashion products, prices, sizes, and variants from ZEB.be — Belgium's popular multi-brand clothing retailer. No cookies or login required.

Why use this actor?

ZEB carries Tommy Hilfiger, Jack & Jones, Levi's, Only, and dozens of other fashion brands at competitive prices. If you need fashion price comparisons, brand availability tracking, size/color variant data, or product feeds for the Belgian fashion market, this actor delivers structured data via Shopify's JSON API — fast and reliable.

Features

  • Three scraping modes — search by keyword, browse by collection (e.g. "dames", "heren"), or scrape the full product catalog
  • Variant-level data — every size/color combo with individual pricing, SKU, and stock status
  • Fast API-based scraping — uses Shopify's native JSON endpoints, no HTML parsing needed
  • Rich product data — names, brands, prices, sale prices, SKUs, images, descriptions, and product types
  • No cookies, no login required — works out of the box

Input

FieldTypeRequiredDescription
searchQueryStringNoProduct search term (e.g. "tommy hilfiger polo")
collectionStringNoShopify collection handle (e.g. "dames", "heren", "sale")
maxResultsIntegerNoMaximum products to return (default: 100)
proxyConfigurationObjectNoProxy settings (recommended for large runs)

Without input, all products are scraped via /products.json.

Output

Each result contains:

FieldTypeExample
nameString"Tommy Hilfiger Core Slim Fit Polo"
brandString"Tommy Hilfiger"
priceNumber79.90
originalPriceNumber99.90
currencyString"EUR"
skuString"MW0MW30750-DW5"
productIdString"8234567890"
inStockBooleantrue
urlStringFull product URL
imageUrlStringPrimary product image URL
imageUrlsArrayAll product image URLs
descriptionStringCleaned product description
categoryString"Polo's"
variantsArraySize/color combos with pricing and availability

Example output

{
"name": "Tommy Hilfiger Core Slim Fit Polo",
"brand": "Tommy Hilfiger",
"price": 79.90,
"originalPrice": 99.90,
"currency": "EUR",
"sku": "MW0MW30750-DW5",
"productId": "8234567890",
"inStock": true,
"url": "https://www.zeb.be/products/tommy-hilfiger-core-slim-fit-polo",
"imageUrl": "https://cdn.shopify.com/s/files/1/0123/4567/products/tommy-polo.jpg",
"imageUrls": [
"https://cdn.shopify.com/s/files/1/0123/4567/products/tommy-polo.jpg",
"https://cdn.shopify.com/s/files/1/0123/4567/products/tommy-polo-back.jpg"
],
"description": "Slim fit polo in stretch katoen met kenmerkend Tommy Hilfiger logo.",
"category": "Polo's",
"variants": [
{"title": "S / Navy", "sku": "MW0MW30750-DW5-S", "price": 79.90, "available": true},
{"title": "M / Navy", "sku": "MW0MW30750-DW5-M", "price": 79.90, "available": true},
{"title": "L / Navy", "sku": "MW0MW30750-DW5-L", "price": 79.90, "available": false}
],
"scrapedAt": "2026-04-06T10:00:00.000Z"
}

Cost estimate

This actor uses approximately 0.5 compute units per 1,000 products. It calls Shopify's JSON API directly (250 products per request), making it one of the fastest scrapers in this catalog. A full catalog scrape costs roughly $0.25.

How it works

ZEB runs on Shopify. The scraper uses three native Shopify API endpoints:

  1. /products.json?limit=250&page=N for full catalog browsing
  2. /collections/{handle}/products.json for collection-specific browsing
  3. /search/suggest.json for keyword search, with fallback to catalog filtering

Descriptions are cleaned of hidden display:none divs that ZEB uses to store internal barcode data.

Limitations

  • Search mode uses Shopify's suggest endpoint (max 10 initial results), then scans the full catalog for additional matches
  • Shopify's products.json API has a built-in page limit; very large catalogs may not return every product
  • Data is scraped from the public website and may change without notice