AS Adventure Scraper — Belgian Outdoor & Sports Products
Pricing
Pay per event
AS Adventure Scraper — Belgian Outdoor & Sports Products
Scrape products, prices, ratings, and availability from asadventure.com. Belgium's leading outdoor, hiking, camping & sports retailer. Supports search, category browsing, and full catalog via sitemap.
Pricing
Pay per event
Rating
0.0
(0)
Developer
Jelle Desramaults
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
AS Adventure Scraper
Scrape outdoor gear from asadventure.com, Belgium's biggest outdoor and sports retailer (part of the JBC Group). Hiking boots, backpacks, jackets, camping gear, climbing equipment -- the lot.
Three scraping strategies
The scraper picks the best approach based on your input:
-
Search mode (
searchQuery): Hits AS Adventure's internal search API directly at/api/aem/search. Returns structured JSON with prices, images, and SKUs without loading HTML. Fastest option. -
Category mode (
categoryUrls): Since category pages are client-side rendered (React), the scraper discovers product URLs through subcategory links and the XML sitemap, then visits each product page for JSON-LD data. -
Sitemap mode (default, no input): Discovers all products from
sitemap/index.xml, filtering for the selected language.
Input
| Field | Type | Required | Description |
|---|---|---|---|
searchQuery | String | No | Keyword, e.g. "rugzak", "wandelschoenen", "the north face" |
categoryUrls | Array | No | Category page URLs, e.g. https://www.asadventure.com/nl/c/rugzakken-en-tassen/rugzakken.html |
maxResults | Integer | No | Max results (default: 100) |
language | String | No | nl (default), fr, or en |
proxyConfiguration | Object | No | Proxy settings |
Output
| Field | Type | Example |
|---|---|---|
name | String | "The North Face Jester Rugzak" |
brand | String | "The North Face" |
price | Number | 75.00 |
originalPrice | Number | 89.00 |
currency | String | "EUR" |
productId | String | "A3VXFJK3-OS" |
sku | String | SKU code |
inStock | Boolean | true |
rating | Number | 4.5 |
reviewCount | Number | 67 |
imageUrl | String | "https://image.asadventure.com/productimages/1200x1200/..." |
description | String | Product description |
category | String | "Rugzakken" |
categories | Array | ["Rugzakken en tassen", "Rugzakken"] |
color | String | Product color |
language | String | "nl" |
{"name": "The North Face Jester Rugzak","brand": "The North Face","price": 75.00,"currency": "EUR","productId": "A3VXFJK3-OS","inStock": true,"imageUrl": "https://image.asadventure.com/productimages/1200x1200/backpack.jpg","category": "Rugzakken","categories": ["Rugzakken en tassen", "Rugzakken"],"language": "nl","scrapedAt": "2026-03-15T10:00:00.000Z"}
Cost
Search API mode: ~$0.05 per 1,000 products (pure JSON, no page rendering). Sitemap/category mode: ~$0.25 per 1,000 (visits product pages).
Notes
- Product images use AS Adventure's CDN at
image.asadventure.com/productimages/1200x1200/ - Breadcrumbs are extracted from Hypernova
AEMScenes_Breadcrumbscript tags - The search API sometimes returns a redirect instead of results (brand searches); the scraper falls back to sitemap when that happens