AS Adventure Scraper — Belgian Outdoor & Sports Products avatar

AS Adventure Scraper — Belgian Outdoor & Sports Products

Pricing

Pay per event

Go to Apify Store
AS Adventure Scraper — Belgian Outdoor & Sports Products

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

Jelle Desramaults

Maintained by Community

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:

  1. 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.

  2. 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.

  3. Sitemap mode (default, no input): Discovers all products from sitemap/index.xml, filtering for the selected language.

Input

FieldTypeRequiredDescription
searchQueryStringNoKeyword, e.g. "rugzak", "wandelschoenen", "the north face"
categoryUrlsArrayNoCategory page URLs, e.g. https://www.asadventure.com/nl/c/rugzakken-en-tassen/rugzakken.html
maxResultsIntegerNoMax results (default: 100)
languageStringNonl (default), fr, or en
proxyConfigurationObjectNoProxy settings

Output

FieldTypeExample
nameString"The North Face Jester Rugzak"
brandString"The North Face"
priceNumber75.00
originalPriceNumber89.00
currencyString"EUR"
productIdString"A3VXFJK3-OS"
skuStringSKU code
inStockBooleantrue
ratingNumber4.5
reviewCountNumber67
imageUrlString"https://image.asadventure.com/productimages/1200x1200/..."
descriptionStringProduct description
categoryString"Rugzakken"
categoriesArray["Rugzakken en tassen", "Rugzakken"]
colorStringProduct color
languageString"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_Breadcrumb script tags
  • The search API sometimes returns a redirect instead of results (brand searches); the scraper falls back to sitemap when that happens