Árukereső & ÁrGép scraper avatar

Árukereső & ÁrGép scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Árukereső & ÁrGép scraper

Árukereső & ÁrGép scraper

Scrape product prices and seller offers from Hungary's two largest price comparison sites ÁrGép (argep.hu) and Árukereső (arukereso.hu). Extract the lowest price, seller name, shipping costs, and all competing offers for any product. Powered by Camoufox for reliable anti-detection.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

Gergő Gyulai

Gergő Gyulai

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

1

Monthly active users

a day ago

Last modified

Share

Apify actor for fetching competitor prices from ÁrGép and Árukeresö using Camoufox stealth browser (Firefox-based anti-detection).

Why Camoufox?

Both ÁrGép and Árukeresö may block standard HTTP crawlers or headless browsers. Camoufox is a stealthy fork of Firefox that evades bot detection, making it ideal for sites with anti-scraping measures.

Auto-detection

The actor automatically detects which site a URL belongs to and uses the appropriate scraping strategy:

  • argep.hu → ÁrGép extractor
  • arukereso.hu → Árukeresö extractor

You can mix URLs from both sites in a single run.

What it scrapes

ÁrGép (argep.hu)

  • All seller offers from .offerListHoverContainer blocks
  • Seller names from data-sellerText attributes
  • Prices from .currentPrice .price spans (handles split number formatting)
  • Shipping costs from .shippingInfo elements
  • Fallback: JSON-LD AggregateOffer structured data

Árukeresö (arukereso.hu)

  • All seller offers from .optoffer blocks with Schema.org microdata
  • Seller names from [itemprop="seller"] [itemprop="name"]
  • Prices from [itemprop="price"] content attributes
  • Shipping info from .delivery-info elements
  • Fallback: JSON-LD structured data
  • Fallback: Any itemprop="price" elements

Output Schema

{
"url": "https://www.argep.hu/...",
"source": "argep",
"price": 184900,
"seller": "ShopName",
"position": null,
"competitorsCount": 5,
"allOffers": [
{ "seller": "ShopA", "price": 184900 },
{ "seller": "ShopB", "price": 189000, "shipping": 1990 }
],
"fetchedAt": "2026-02-09T20:00:00.000Z"
}

The source field indicates which site the data came from ("argep" or "arukereso").

Input

{
"startUrls": [
{ "url": "https://www.argep.hu/product/example-p12345/" },
{ "url": "https://www.arukereso.hu/szintetizator-es-keyboard-c1011/korg/microkorg-xl-p181075345/" }
],
"maxRequestsPerCrawl": 100,
"excludeShops": ["myshop.hu"],
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}
ParameterTypeDescription
startUrlsarrayList of ÁrGép and/or Árukeresö product URLs to scrape
maxRequestsPerCrawlnumberMax pages per run (default: 100)
excludeShopsstring[]Shop names/domains to exclude from results
proxyConfigurationobjectProxy settings (residential recommended)

Development

cd apify/camoufox-argep
npm install
npm run start:dev

Deployment

$apify push