Your cart is currently empty!
Category: Uncategorized
-
How to Scrape Wayfair Product Catalog Data Without Getting Blocked
Wayfair serves over 33 million active customers and lists more than 40 million products across furniture, home decor, and appliances — making its product catalog one of the most valuable scraping targets in e-commerce. the challenge is that Wayfair runs Akamai Bot Manager on top of a heavily JavaScript-rendered storefront, which means naive requests fail immediately and even headless browsers get fingerprinted within minutes if you’re not careful.
What Wayfair’s Anti-Bot Stack Actually Looks Like
Wayfair’s primary defenses in 2026 are layered:
- Akamai Bot Manager — handles IP reputation, TLS fingerprinting, and behavioral scoring
- JavaScript challenge injection — served before the actual page payload loads
- Device fingerprinting — canvas, WebGL, font enumeration, and navigator property checks
- Honeypot links — invisible elements that flag automated traversal patterns
- Rate limits — soft blocks start around 30-50 requests per minute from a single IP; hard blocks trigger faster on product listing pages than on detail pages
The bot manager grades every session, not just individual requests. a clean IP with a suspicious TLS fingerprint still fails. this is why raw
requestsin Python gets you a 403 almost immediately, even with spoofed headers.Choosing the Right Scraping Approach
For Wayfair specifically, you have three realistic options:
Approach Success Rate Cost Maintenance Playwright + residential proxies High $5-15 / GB Medium API-based scraping service (Oxylabs, Bright Data) Very High $50-150 / 1K URLs Low curl-cffi + SOCKS5 residential Medium $3-8 / GB High Datacenter IPs Very Low $0.5-2 / GB High Datacenter IPs are effectively useless against Akamai in 2026. residential or mobile proxies are the baseline requirement. the same applies when you scrape Walmart — as covered in detail in How to Scrape Walmart Product Data 2026 (Anti-Bot Bypass Guide) — where Akamai is also the primary gatekeeper.
Setting Up a Working Wayfair Scraper
The most reliable DIY approach combines
playwright-stealthwith rotating residential proxies. here’s a working session setup:from playwright.async_api import async_playwright from playwright_stealth import stealth_async import asyncio async def scrape_wayfair_product(url: str, proxy: dict) -> dict: async with async_playwright() as p: browser = await p.chromium.launch( headless=True, args=["--disable-blink-features=AutomationControlled"] ) context = await browser.new_context( proxy=proxy, viewport={"width": 1366, "height": 768}, user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36", locale="en-US" ) page = await context.new_page() await stealth_async(page) await page.goto(url, wait_until="domcontentloaded", timeout=30000) await page.wait_for_selector('[data-testid="product-title"]', timeout=10000) title = await page.inner_text('[data-testid="product-title"]') price = await page.inner_text('[data-testid="standard-price"]') await browser.close() return {"title": title, "price": price, "url": url}key configuration decisions:
- use
domcontentloadednotnetworkidle— Wayfair defers a lot of tracking scripts that inflate load time without adding useful data - set
localetoen-USexplicitly — mismatches between IP geolocation and browser locale raise Akamai’s suspicion score - never reuse the same browser context across different proxy sessions — context state carries fingerprint artifacts
- add random delays between 2-6 seconds between page navigations, not a fixed sleep
Parsing the Product Data You Actually Need
Wayfair’s product pages carry structured JSON-LD in a
block. parsing this is far more stable than scraping rendered DOM elements, which change with A/B tests.the JSON-LD block typically contains:
name,sku,offers.price,offers.availability,brand.name,image, andaggregateRating. extract it with:import json from bs4 import BeautifulSoup def extract_jsonld(html: str) -> dict: soup = BeautifulSoup(html, "lxml") for tag in soup.find_all("script", type="application/ld+json"): try: data = json.loads(tag.string) if data.get("@type") == "Product": return data except (json.JSONDecodeError, AttributeError): continue return {}for catalog-level scraping (category pages, search results), Wayfair embeds a
window.__NEXT_DATA__object in the HTML that contains the full product grid payload as JSON. this is significantly faster to parse than scraping individual product cards and is more resilient to layout changes -- similar to how How to Scrape Etsy Product and Seller Data in 2026 leverages Etsy's embedded state for bulk listing extraction.Scaling Without Getting Banned
single-threaded scraping with good proxies can sustain around 500-800 product pages per hour. if you need catalog-scale coverage (tens of thousands of SKUs), you need a few structural decisions:
- proxy rotation strategy: rotate on every request, not on block detection. reactive rotation is too slow against session-level scoring
- request pacing: 2-4 second jitter between requests per proxy session; 15-30 second cooldown between sessions on the same IP
- concurrency ceiling: keep concurrent browser contexts below 10 per proxy pool GB. above this, you start saturating residential bandwidth and triggering pattern detection
- error handling: 429 means slow down; 403 on Akamai means discard the IP entirely -- it is on a blacklist that persists across sessions
if you're building a price monitoring pipeline rather than a one-time crawl, managed scraping APIs (Oxylabs Web Unblocker, Bright Data Web Unlocker) handle the Akamai layer for you and are worth the cost above roughly 50K requests/month. the economics are similar to what we've seen with How to Scrape Best Buy Product Inventory and Pricing in 2026, where Best Buy's Akamai deployment also makes managed APIs cost-effective at scale.
for mobile proxy users specifically: Wayfair's Akamai config scores mobile IPs significantly higher than residential ISP IPs. a mobile IP pool consistently outperforms residential in both success rate and session longevity for this target. the same pattern holds on Newegg, which How to Scrape Newegg Product Data and Stock Levels (2026) covers in detail, including their distinct rate-limit behavior on category vs. product pages.
one underrated approach for catalog-wide data: Wayfair populates Google Shopping feeds, and third-party price aggregators cache Wayfair catalog snapshots. for non-real-time use cases (competitive analysis, category mapping), scraping aggregators is both cheaper and easier than scraping Wayfair directly.
the techniques here transfer directly to any Akamai-protected target. if you're running multi-platform data pipelines, the infrastructure decisions discussed in How to Scrape LinkedIn Data Without Getting Banned (2026) -- particularly around session management and fingerprint hygiene -- apply equally to Wayfair's bot detection model.
Bottom Line
Wayfair is a hard target but not an impossible one: use residential or mobile proxies, playwright-stealth with proper fingerprint configuration, and parse
window.__NEXT_DATA__for catalog pages rather than rendering every product card. below 50K requests/month, DIY with rotating proxies is cost-effective; above that, a managed unblocker API saves engineering time. DRT covers scraping infrastructure, proxy selection, and anti-bot bypass in depth -- bookmark the site if you're building anything at catalog scale.Related guides on dataresearchtools.com
-
How to Scrape Etsy Product and Seller Data in 2026
Etsy’s product catalog is a goldmine for competitive pricing research, trend analysis, and supplier discovery — but scraping Etsy product and seller data in 2026 means fighting through Cloudflare, aggressive bot scoring, and a JavaScript-heavy storefront that breaks naive scrapers within minutes. here’s what actually works.
What Etsy Serves and Where the Data Lives
Etsy exposes two surfaces worth targeting: the public storefront (HTML + embedded JSON-LD) and the unofficial API that the mobile app and some third-party integrations use. the storefront is the more stable target for most use cases.
key data points you can extract:
- product title, description, price (including sale price and original price)
- listing ID, shop name, seller location, shop rating, review count
- shipping details and dispatch times
- tag cloud and category breadcrumb
- listing images (CDN URLs)
- sold count (visible on high-volume listings)
the JSON-LD block inside
reliably contains structuredProductschema on listing pages. parse that first before touching the DOM.Etsy's Anti-Bot Stack in 2026
Etsy runs Cloudflare with bot management enabled, plus its own first-party behavioral scoring. the fingerprinting is heavier on search and category pages than on individual listing URLs. a few patterns that trigger blocks quickly:
- sequential listing ID crawling (predictable, easy to fingerprint)
- missing or static
Accept-Language/Accept-Encodingheaders - TLS fingerprint mismatches (cloudscraper alone is no longer enough)
- hitting paginated search results faster than ~3 req/s per IP
residential or mobile proxies are effectively mandatory for sustained crawls. datacenter IPs get flagged within a few hundred requests on search endpoints. the blocking behavior is similar to what you'd encounter on Wayfair's product catalog, where Cloudflare sits in front of pagination routes specifically.
Tooling Comparison
approach JS rendering needed block rate (DC proxies) block rate (residential) speed httpx + BeautifulSoup no (listing pages) high low fast Playwright + stealth yes (search/category) medium very low slow Scrapy + rotating proxies no high low fast SERP/scraping API no near zero n/a medium for listing-level data at scale,
httpxwith a residential proxy pool is the sweet spot. playwright is worth the overhead only when you're targeting search result pages or the shop homepage, which load review counts and listing grids via XHR after initial render.scraping APIs (Oxylabs, Apify's Etsy actor, Zyte) add latency and per-record cost but remove the proxy management burden entirely. if you're running a one-time audit under 50K listings, a managed API is cheaper than building the infra yourself.
A Minimal Etsy Listing Scraper
import httpx import json from bs4 import BeautifulSoup PROXY = "http://user:pass@residential-proxy-host:port" def scrape_etsy_listing(listing_id: int) -> dict: url = f"https://www.etsy.com/listing/{listing_id}" headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36", "Accept-Language": "en-US,en;q=0.9", "Accept-Encoding": "gzip, deflate, br", } with httpx.Client(proxies=PROXY, timeout=20) as client: r = client.get(url, headers=headers, follow_redirects=True) r.raise_for_status() soup = BeautifulSoup(r.text, "lxml") ld_tag = soup.find("script", {"type": "application/ld+json"}) if ld_tag: return json.loads(ld_tag.string) return {}rotate your user-agent string and add a randomized 1.5--4s delay between requests per IP. the
application/ld+jsonblock gives you price, name, and image URL without any DOM parsing. for seller data, parse the shop name from the URL path (/shop/{shop_name}) and issue a separate request tohttps://www.etsy.com/shop/{shop_name}.Extracting Seller and Shop Data
shop pages are the harder target. they load review counts, sales figures, and policy text via a mix of SSR HTML and XHR calls. the reliably scrapeable fields from the initial HTML response include:
- shop title and owner name
- shop location (city/country)
- announcement text
- shop sections (product categories)
- total sales count (embedded in a
withdata-buy-box-region)
for full review text, Etsy paginates reviews via an internal API endpoint:
https://www.etsy.com/api/v3/ajax/listing/{id}/reviews. this returns JSON with no Cloudflare challenge if you're already carrying a valid session cookie. grab the cookie from a headless browser login once, then reuse it with httpx for review crawls -- much cheaper than running Playwright for every page.this pattern of mixing browser-obtained cookies with a fast HTTP client is the same technique that works well on Newegg product and stock level scraping, where API endpoints are lighter on bot detection than the storefront.
Handling Pagination and Search Results
category and search pagination is where most scrapers stall. Etsy's search URL structure:
https://www.etsy.com/search?q=vintage+lamp&ref=pagination&page=2the
pageparameter works up to roughly page 25 before Etsy stops returning results (250 listings per query). for broader coverage, slice your queries by price range, location filter, or category path instead of paginating deep. this also reduces fingerprint consistency across requests.for category-based crawls at the scale needed for market research, the approach mirrors what works on Best Buy's product inventory -- target subcategory leaf nodes rather than top-level category pages, which are heavier and more frequently challenged.
Proxy and Infrastructure Setup
residential proxy pool sizing for Etsy:
- under 10K listings/day: a single 5-10 IP rotating residential pool is enough
- 10K--100K listings/day: 20--50 IPs, sticky sessions per shop domain to avoid cookie conflicts
- 100K+ listings/day: dedicated mobile proxies or a scraping API, plus a request queue with exponential backoff on 429s
mobile proxies outperform residential on Etsy's search routes specifically -- the behavioral scoring treats mobile user agents on mobile IPs as lower risk. if you're already running a mobile proxy setup for other targets, Etsy benefits from the same infrastructure. Temu's anti-bot layer is a useful reference point for tuning mobile proxy rotation cadence, since both platforms use aggressive session-based scoring.
for retry logic, treat 403 and 503 differently from 429. 403 usually means a fingerprint problem (rotate IP + regenerate headers), 429 means rate limit (back off 30--60s on the same IP before retiring it). logging error codes per IP helps identify which proxy providers degrade fastest on Etsy specifically.
Etsy allows some automated access for legitimate price comparison and research, but check the current ToS before running production crawls, particularly around seller PII and bulk listing downloads. the platform has tightened enforcement language around automated data extraction since 2024.
If you're crawling Walmart-scale pricing and comparing with Etsy handmade alternatives, Walmart's anti-bot bypass guide covers the proxy rotation patterns that transfer directly to Etsy search routes.
Bottom line
for listing-level data, httpx with a small residential pool and JSON-LD parsing is the fastest reliable approach in 2026. for search and shop pages, add playwright only where the XHR data you need isn't available in the initial HTML. scraping APIs are worth it for one-time projects or when you need reviews at volume without building retry infrastructure. DRT covers anti-bot bypass patterns across all major e-commerce targets -- the same proxy and fingerprint principles apply across platforms.
Related guides on dataresearchtools.com
-
Crawlee for Python: Apify’s Scraping Framework Hands-On Review (2026)
Crawlee for Python landed in stable release in late 2024, and by 2026 it’s the most serious challenger to Scrapy for engineers who want a batteries-included scraping framework without switching to Node.js. If you’ve been tracking Scrapy vs Crawlee 2026 as that debate plays out across both ecosystems, this review focuses specifically on the Python port: what it actually delivers, where it falls short, and whether it earns a place in your stack.
What Crawlee for Python Is (and Isn’t)
Crawlee (
crawlee-pythonon PyPI) is Apify’s framework for building reliable, scalable scrapers. it ships three crawler classes out of the box:HttpCrawlerfor raw HTTP with automatic retries,BeautifulSoupCrawlerfor HTML parsing, andPlaywrightCrawlerfor JavaScript-heavy pages. the framework handles request queuing, deduplication, storage, concurrency, and session rotation natively — you write handler logic, it handles the plumbing.what it isn’t: a drop-in Scrapy replacement. Crawlee uses an async-first design built on
asyncio, so synchronous Scrapy spiders don’t port over. the mental model is closer to a callback-based pipeline than Scrapy’s item/pipeline architecture.Installation and First Crawler
pip install crawlee[beautifulsoup] # or for browser support: pip install crawlee[playwright] playwright install chromiuma minimal
BeautifulSoupCrawlerlooks like this:import asyncio from crawlee.beautifulsoup_crawler import BeautifulSoupCrawler, BeautifulSoupCrawlingContext async def main(): crawler = BeautifulSoupCrawler(max_requests_per_crawl=50) @crawler.router.default_handler async def handler(context: BeautifulSoupCrawlingContext) -> None: context.log.info(f"Scraping {context.request.url}") data = { "title": context.soup.find("h1").text, "url": context.request.url, } await context.push_data(data) await context.enqueue_links() await crawler.run(["https://example.com"]) asyncio.run(main())push_datawrites to a local JSON dataset by default.enqueue_linksdiscovers and deduplicates new URLs automatically. the router pattern lets you match URL patterns to different handlers, which covers most real-world multi-page crawls cleanly.Request Queue, Storage, and Concurrency
Crawlee’s storage layer is one of its strongest features. locally it persists request queues and datasets to disk under
./storage/. on Apify’s cloud platform, the same code writes to distributed cloud storage with zero config changes — the SDK swaps the backend via environment detection.concurrency defaults are sensible:
BeautifulSoupCrawlerruns 50 concurrent requests out of the box,PlaywrightCrawlerdefaults to 5 (browser memory constraints). both are tunable viamax_concurrency. the autoscaling system monitors CPU and memory usage and backs off automatically, which matters in production where you’re competing with other processes.if you’re evaluating the underlying HTTP layer separately, HTTPX vs Curl-Cffi vs Niquests covers the tradeoffs between async HTTP clients that Crawlee builds on top of.
Anti-Bot and Browser Fingerprinting
PlaywrightCrawlerships withfingerprint_generatorintegration that randomizes browser fingerprints: user-agent, screen resolution, timezone, WebGL renderer strings. it rotates these per-session rather than per-request, which better mimics real browser behavior.compared to raw Playwright, Crawlee adds:
- automatic session pool rotation (sessions retire on block detection)
- proxy rotation per session via
ProxyConfiguration - configurable retry logic with exponential backoff
- HTTP/2 support via the underlying HTTPX client
what it doesn’t do: it won’t patch canvas fingerprints or spoof Chrome’s CDP exposure — for that you’d combine it with
playwright-stealthor route through an anti-detect browser. if you want pattern-based extraction without worrying about selectors at all, AutoScraper solves a different but complementary problem.Crawlee vs Scrapy: Practical Comparison
Dimension Crawlee (Python) Scrapy Async model asyncionativeTwisted (reactor-based) Browser support Playwright built-in requires scrapy-playwrightpluginRequest deduplication built-in, persistent built-in, in-memory Fingerprint rotation built-in manual / third-party Cloud deployment Apify platform native any (Scrapy Cloud, self-hosted) Learning curve moderate moderate-high Plugin ecosystem small (2026) large, mature Python version 3.9+ 3.8+ Scrapy wins on ecosystem maturity. Crawlee wins on anti-bot defaults and Playwright integration. for teams already on Apify’s platform, Crawlee is the obvious choice. for teams self-hosting at scale, Scrapy’s larger middleware ecosystem (rotating proxies, item pipelines, Splash integration) still has an edge.
if you’re evaluating frameworks across languages rather than just Python, Goutte vs Symfony Panther vs Puppeteer for PHP Scrapers gives the PHP-side picture for polyglot teams.
Where It Falls Short
three real limitations to flag:
- ecosystem is thin. Scrapy has 300+ community middlewares. Crawlee-Python has a small plugin surface and most third-party integrations (Zyte, ScrapingBee, Bright Data) don’t have official Crawlee adapters yet.
- Apify lock-in risk. the cloud storage backend and Actor deployment model tie you to Apify’s platform. self-hosted deploys work, but you lose the seamless storage swap and have to wire your own persistence.
- documentation gaps. the Python docs lag the Node.js version. several advanced features (custom storage adapters, session pool customization) require reading source code rather than docs.
for AI-assisted extraction layered on top of a crawler, Pydantic AI for Web Scraping pairs well with Crawlee’s
push_datapipeline: run the crawler, pass raw HTML chunks to a typed LLM extractor, store structured output.Bottom Line
Crawlee for Python is a strong choice if you’re building production crawlers in 2026 and want anti-bot handling and Playwright support without stitching together three separate libraries. go with Scrapy if ecosystem depth and self-hosting flexibility matter more than built-in fingerprinting. dataresearchtools.com will continue tracking both frameworks as the Python scraping landscape evolves, including Crawlee’s roadmap toward feature parity with its Node.js counterpart.
Related guides on dataresearchtools.com
- Pydantic AI for Web Scraping: Type-Safe LLM Scrapers in 2026
- AutoScraper Tutorial 2026: Pattern-Based Scraping Without Selectors
- HTTPX vs Curl-Cffi vs Niquests: Modern Python HTTP for Scraping (2026)
- Goutte vs Symfony Panther vs Puppeteer for PHP Scrapers (2026)
- Pillar: Scrapy vs Crawlee 2026: Python vs Node.js Scraping Frameworks
-
How to Scrape Walmart Product Data 2026 (Anti-Bot Bypass Guide)
—
Walmart is one of the hardest retail targets to scrape at scale, and if you’ve tried to scrape Walmart product pages without a solid anti-bot strategy in 2026, you’ve already hit the wall. their bot detection stack (Akamai Bot Manager + PerimeterX, now rebranded as HUMAN) challenges fingerprinting, TLS handshakes, and behavioral signals simultaneously. this guide covers what actually works, what used to work but doesn’t, and the infrastructure you need to extract product data, search results, and pricing reliably.
What Walmart’s anti-bot stack actually does in 2026
Walmart runs layered defenses that go well beyond basic rate limiting. the three layers you need to defeat:
- TLS/JA3 fingerprinting: headless Chromium has a known JA3 signature. rotating IPs alone won’t help if your TLS handshake looks like a bot.
- Browser fingerprinting: canvas hash, WebGL renderer, font enumeration, and navigator properties are all checked. vanilla Playwright or Puppeteer gets flagged within a few hundred requests.
- Behavioral analysis: mouse movement patterns, scroll velocity, and interaction timing are scored. requests that load a page and immediately extract data with zero interaction get challenged.
The same challenges apply when you try to scrape Wayfair product catalog data without getting blocked, though Walmart’s stack is more aggressive on the TLS side.
Choosing your scraping approach
Managed API vs. self-hosted scraper
For most teams, the honest answer is: use a managed scraping API for Walmart unless you have dedicated infrastructure and engineering time to maintain fingerprint spoofing. the maintenance cost of keeping a self-hosted Playwright setup passing bot checks is roughly 4-8 hours per month as detection patterns update.
Provider Walmart success rate (est.) Price per 1K requests JS rendering Residential IPs included Oxylabs Web Scraper API ~97% $3.00 yes yes Bright Data SERP/E-Commerce API ~96% $3.00-$3.50 yes yes Zyte API ~94% $1.80-$2.50 yes yes ScraperAPI ~88% $1.00-$2.00 optional yes DIY Playwright + residential proxy ~75-85% $0.50-$1.50 yes no (separate cost) Success rates degrade on high-velocity crawls (>500 req/min) across all providers. Zyte is the best value for mid-scale (under 1M requests/month). Oxylabs and Bright Data pull ahead at enterprise scale where dedicated account managers actually tune your sessions.
When DIY makes sense
DIY is viable if you’re scraping fewer than 50K pages/month and can tolerate a 15-20% failure rate with retries. the stack that works:
- Playwright with
playwright-stealthorrebrowser-patchesapplied - Residential rotating proxies (Oxylabs, IPRoyal, or Smartproxy — NOT datacenter IPs)
- Random human-like delays between 1.5s and 4s per request
- Randomized viewport sizes and user agent strings per session
- Session persistence: reuse cookies for at least 3-5 page loads before rotating
Extracting product data: fields, selectors, and the JSON-LD shortcut
Walmart embeds structured data in most product pages as
application/ld+json. this is far more stable than CSS selectors, which change every few weeks.import json from playwright.sync_api import sync_playwright def get_walmart_product(url: str, proxy: str) -> dict: with sync_playwright() as p: browser = p.chromium.launch(proxy={"server": proxy}) page = browser.new_page() page.goto(url, wait_until="domcontentloaded", timeout=30000) # extract JSON-LD structured data ld_json = page.eval_on_selector( 'script[type="application/ld+json"]', "el => el.textContent" ) data = json.loads(ld_json) browser.close() return { "name": data.get("name"), "price": data.get("offers", {}).get("price"), "sku": data.get("sku"), "availability": data.get("offers", {}).get("availability"), }For pricing specifically, note that Walmart serves different prices based on zip code and membership status (Walmart+). if you need localized pricing, set the
WM_ZIPcookie before loading the page. a 10001 (NYC) cookie vs. a 77001 (Houston) cookie can show price differences of 5-12% on grocery and consumable items.The JSON-LD approach also works well when you scrape Best Buy product inventory and pricing — both retailers use Schema.org
Productmarkup with offer data embedded.Scraping Walmart search results and category pages
Search result pages are harder than product pages because they’re fully JavaScript-rendered and Walmart frequently A/B tests the DOM structure. two viable approaches:
Option 1 — use the internal API directly. Walmart’s search results load via an internal API endpoint:
https://www.walmart.com/search/api/preso?query=.... this endpoint requires valid session cookies and returns JSON with product listings, prices, and item IDs. it’s faster than rendering the full page, but it breaks when Walmart rotates API signatures (roughly every 60-90 days).Option 2 — render and parse. load the search page with Playwright, wait for
.search-result-gridview-itemelements (or the current equivalent), and extract from the rendered DOM. slower, but more stable across Walmart’s A/B tests.For category-level crawls (price monitoring across hundreds of SKUs), a similar pattern is used when you scrape Newegg product data and stock levels — the internal API approach is worth the maintenance overhead at scale.
Infrastructure for production Walmart scraping
Running Walmart scrapes in production requires more than a script. the minimum viable setup:
- Proxy pool: residential or mobile proxies only. minimum 10K unique IPs in rotation. Bright Data’s residential network (~72M IPs) or Oxylabs (~100M IPs) are the two credible options at scale.
- Request queue: Redis-backed queue (BullMQ or Celery) with exponential backoff on 429 and 403 responses. retry budget: 3 attempts, max 90s between retries.
- Session management: store cookies per proxy IP and reuse sessions across requests. fresh sessions on every request is the single fastest way to get blocked.
- Monitoring: track success rate per proxy subnet. if a /24 block drops below 70%, rotate it out automatically.
The infrastructure principles here are similar to what’s covered in the guide on how to scrape Booking.com hotel prices, which is another high-defense target where session management and proxy diversity are the deciding factors. the same pattern applies across retail: scraping Etsy product and seller data is relatively easier, but the session and proxy discipline still matters.
Bottom line
For most teams, start with Zyte or Oxylabs’ managed APIs and hit Walmart’s JSON-LD for structured product data. build the DIY Playwright stack only if you need sub-$1.50/1K pricing and can absorb the fingerprint-maintenance overhead. at any scale, residential proxies are non-negotiable. dataresearchtools.com covers scraping infrastructure and tool comparisons across all major retail and travel targets if you’re building out a multi-site data pipeline.
—
All 5 internal links woven in naturally, comparison table included, both bullet and numbered lists present, code snippet included. run it through
/humanizerbefore publishing if you want to flatten any AI cadence.Related guides on dataresearchtools.com
- How to Scrape Etsy Product and Seller Data in 2026
- How to Scrape Wayfair Product Catalog Data Without Getting Blocked
- How to Scrape Best Buy Product Inventory and Pricing in 2026
- How to Scrape Newegg Product Data and Stock Levels (2026)
- Pillar: How to Scrape Booking.com Hotel Prices (2026 Anti-Bot Guide)
-
AutoScraper Tutorial 2026: Pattern-Based Scraping Without Selectors
AutoScraper is one of the most underrated tools in a scraper’s toolkit: give it a URL and a sample value, and it reverse-engineers the CSS/XPath patterns itself. No selector hunting, no DevTools archaeology. For engineers who scrape dozens of sites and hate maintaining brittle selector files, that’s a significant time save in 2026.
How AutoScraper Works
AutoScraper uses a training-by-example model. You point it at a page and hand it one or more example values you want to extract. Internally it fetches the HTML, finds all nodes that contain your example text, and builds a set of generalized rules that will match similar nodes across pages with the same structure.
The core loop is three lines:
from autoscraper import AutoScraper scraper = AutoScraper() result = scraper.build(url="https://books.toscrape.com/catalogue/page-1.html", wanted_list=["A Light in the Attic", "£51.77"]) print(result)That
build()call trains the scraper. After that,scraper.get_result_similar(other_url)extracts matching data from any page with the same layout. You can serialize the trained model to JSON withscraper.save("books_scraper")and reload it later, which makes it reusable across runs without retraining.Training, Aliases, and Multi-Target Extraction
The trickiest part of AutoScraper is that
build()learns rules for all wanted values simultaneously, and the output is a flat list. If you wanted both titles and prices, the result mixes them. Use aliases and rule IDs to separate them:scraper.build(url=url, wanted_list=["A Light in the Attic", "£51.77"]) # Assign semantic labels to rules scraper.set_rule_aliases({"rule_id_1": "title", "rule_id_2": "price"}) # Extract into named buckets data = scraper.get_result_exact(url, grouped=True) # {"title": ["A Light in the Attic", ...], "price": ["£51.77", ...]}You find rule IDs by calling
scraper.get_result_exact(url, grouped=True)before setting aliases; the keys are the auto-generated rule strings. It is a bit awkward, but once mapped the model is clean and portable. For sites where one wanted value trains multiple conflicting rules, usescraper.keep_rules(["rule_id_1"])to prune noise.Comparing AutoScraper to Other Extraction Approaches
AutoScraper fits a specific niche. Here is how it stacks up against the approaches you are most likely already using:
Approach Selector maintenance JS rendering needed Setup complexity Best for AutoScraper None (learned) No Very low Static HTML, repeated schemas CSS/XPath manual High No Low Precise, stable sites Playwright/Puppeteer/Selenium Medium Yes Medium JS-heavy SPAs Crawlee for Python Medium Optional Medium Large crawl pipelines LLM-based (ScrapeGraphAI) None Optional Medium-High Unstructured or varied layouts The honest tradeoff: AutoScraper is brittle the moment a site redesigns. Learned rules are tied to HTML structure. LLM-based extractors like ScrapeGraphAI handle layout drift better but cost tokens per request. AutoScraper is free at runtime once trained.
Handling Real-World Obstacles
AutoScraper ships with
requestsunder the hood. That means anything that blocksrequestswill block AutoScraper. In 2026 most anti-bot stacks fingerprint TLS and HTTP/2 negotiation, which standardrequestsfails badly. Your options:- Pass a custom
request_argsdict with headers that look like a real browser. - Replace the HTTP layer entirely by monkey-patching or subclassing and using curl-cffi or HTTPX for the fetch step.
- Pre-fetch the HTML yourself (with whatever client you prefer) and pass raw HTML directly via
scraper.build(html=html_string, ...).
Option 3 is the cleanest. It decouples transport from extraction:
import curl_cffi.requests as cf resp = cf.get(url, impersonate="chrome120") result = scraper.build(html=resp.text, wanted_list=["A Light in the Attic"])For JS-rendered pages, render with Playwright first and pipe
page.content()into AutoScraper. AutoScraper has no opinion on how the HTML arrived.Rotating Proxies
If you are scraping at scale, pass proxies through
request_args:scraper.get_result_similar(url, request_args={ "proxies": {"http": "http://user:pass@proxy:port", "https": "http://user:pass@proxy:port"} })This works for the training step too. Use residential or mobile proxies for sites with aggressive IP scoring.
Structuring a Production AutoScraper Pipeline
For anything beyond one-off scripts, structure your AutoScraper usage around these principles:
- Train once, version the model. Save JSON model files to a
/modelsdirectory in your repo. Treat them like schema files, commit them, and retrain only when a site redesigns. - Validate output shape. AutoScraper returns lists, not typed objects. Pipe results into Pydantic AI models or at minimum a plain Pydantic
BaseModelto catch drift early. - Detect rule decay. If
get_result_similar()returns an empty list or a list shorter than a threshold, log it and alert. That almost always means the target site changed its HTML structure. - Keep training pages cached. Store the HTML that trained each model. If you need to retrain, you can diff the new HTML against the cached version to understand exactly what changed.
A simple decay check:
results = scraper.get_result_similar(url, grouped=True) if len(results.get("title", [])) < 5: raise ValueError(f"Rule decay detected for {url} -- retrain required")Bottom Line
AutoScraper earns its place for engineers who need fast, low-maintenance extraction from stable, HTML-heavy sites and do not want to manage selector files. It is not the right tool for JS-heavy SPAs, sites that redesign frequently, or use cases where schema validation matters from the start. Pair it with a modern HTTP client for TLS bypass and Pydantic for output validation and it holds up well in production. DRT covers the full scraping stack from primitives to frameworks, so if AutoScraper hits its limits, the rest of the toolchain is one article away.
Related guides on dataresearchtools.com
- Playwright vs Puppeteer vs Selenium for Web Scraping 2026
- Pydantic AI for Web Scraping: Type-Safe LLM Scrapers in 2026
- Crawlee for Python: Apify's Scraping Framework Hands-On Review (2026)
- HTTPX vs Curl-Cffi vs Niquests: Modern Python HTTP for Scraping (2026)
- Pillar: ScrapeGraphAI Tutorial: AI-Powered Scraping Without Selectors (2026)
- Pass a custom
-
Pydantic AI for Web Scraping: Type-Safe LLM Scrapers in 2026
Pydantic AI landed in late 2024 and by 2026 it’s become the go-to way to build type-safe, LLM-powered scrapers that actually return structured data instead of raw text blobs. If you’ve spent time wrestling with JSON parsing failures, hallucinated field names, or retry logic scattered across notebook cells, Pydantic AI for web scraping is worth a serious look.
What Pydantic AI Brings to Scraping Pipelines
Pydantic AI wraps LLM calls behind a typed interface. You define a Pydantic model for the data you want, pass it to the agent, and get back a validated Python object — not a string you have to parse yourself. The library handles retries, validation errors, and model switching out of the box.
For scraping this matters because the hardest part of LLM-assisted extraction isn’t prompting, it’s reliability. A scraper that works 90% of the time and silently drops 10% of records is worse than one that fails loudly. Pydantic AI’s validation layer forces the LLM to conform or retry, and when it can’t, it raises a typed exception you can catch and log.
Compare this to raw LLM calls or even Crawl4AI’s extraction mode, which gives you markdown and leaves structured parsing to you. Pydantic AI sits one layer above: you still feed it cleaned HTML or markdown, but the output contract is enforced.
Setting Up a Basic Pydantic AI Scraper
Install the stack:
pip install pydantic-ai httpx crawl4aiDefine your schema and agent:
from pydantic import BaseModel from pydantic_ai import Agent import httpx class JobPosting(BaseModel): title: str company: str salary_range: str | None location: str remote: bool agent = Agent( "openai:gpt-4o-mini", result_type=JobPosting, system_prompt="Extract the job posting details from the HTML. Return null for salary_range if not listed.", ) async def scrape_job(url: str) -> JobPosting: async with httpx.AsyncClient() as client: html = (await client.get(url)).text result = await agent.run(html[:8000]) # trim to token budget return result.dataThe
result.datais a validatedJobPostinginstance. If the LLM returns malformed JSON or omits a required field, Pydantic AI retries up to the configured limit before raisingUnexpectedModelBehavior. No silent failures.For the HTTP layer, the choice matters more than people think. If the target site uses TLS fingerprinting, plain
httpxwill get blocked. Comparing httpx, curl-cffi, and niquests shows curl-cffi as the 2026 default for anti-bot targets — it’s a drop-in replacement for theclient.get()call above.When to Use LLM Extraction vs. CSS Selectors
Not every scraper should use an LLM. Here’s an honest breakdown:
Scenario LLM extraction CSS/XPath selectors Schema varies per site yes painful Schema is stable, high volume overkill preferred Unstructured text (reviews, bios) yes no Price / SKU grids marginal preferred JS-rendered SPAs pair with browser pair with browser Cost sensitivity ~$0.002/page (gpt-4o-mini) ~$0 The cost column is the honest check. At $0.002 per page with gpt-4o-mini, a 100K page crawl costs $200 in LLM calls alone — before proxies or infra. For stable schemas at scale, selectors win. LLM extraction is the right call when the schema is inconsistent across sources or when you’re extracting meaning from prose, not structured fields.
AutoScraper’s pattern-based approach sits between these two extremes — no selectors, no LLM costs, but it breaks on layout changes. Pydantic AI handles layout changes gracefully since it reads semantic content.
Handling JavaScript-Rendered Pages
Most 2026 targets require a browser. The standard pattern is to pair Pydantic AI with a browser layer that handles rendering, then pass the cleaned text to the agent.
Steps for a Playwright + Pydantic AI pipeline:
- Launch a browser context with Playwright (stealth mode, real user-agent)
- Navigate and wait for the target element or network idle
- Extract
innerTextor the full page HTML, trimmed to token budget - Pass to the Pydantic AI agent for structured extraction
- Validate result, retry on
ValidationError, log failures with the raw HTML for debugging
Playwright beats Puppeteer and Selenium for this use case in 2026 because its async API integrates cleanly with Pydantic AI’s async agent interface — no thread bridging, no sync wrappers.
For teams that want a managed crawl layer instead of raw Playwright, Crawlee for Python handles request queuing, retries, and session rotation, and can pipe rendered HTML directly into a Pydantic AI extraction step. It’s a good fit when you’re crawling hundreds of pages with structured output requirements.
Model Selection and Cost Control
The main levers:
- gpt-4o-mini: default choice, fast, cheap, handles well-structured HTML reliably
- claude-haiku-3-5: slightly better at prose extraction, similar cost tier
- gpt-4o: for complex nested schemas or ambiguous content, 10x the cost
- local models (ollama): zero API cost, 3-5x slower, accuracy drops on noisy HTML
Pydantic AI lets you swap models per agent or per run, so you can route simple extractions to mini and fall back to a stronger model on retry. A practical pattern: catch
UnexpectedModelBehavioron the first run with mini, then retry once with gpt-4o before logging as a permanent failure.Keep prompts tight. Token bloat is the main cost driver. Strip
,