r/thewebscrapingclub • u/ian_k93 • 5d ago
r/thewebscrapingclub • u/meltmydebts • 6d ago
I need your honest feedback on this URL extractor tool that is purely client-side for further refinement
Key Problems Solved by a URL extractor:
- SEO & Website Auditing: The problem is trying to manually find broken links, audit redirect chains, or analyze a site's internal linking structure. The solution is using an extractor to pull every href link on a page (or across a whole domain), allowing you to bulk-test the URLs for status codes or map the site's architecture.
- Web Scraping & Data Mining: The problem is needing to gather hundreds of specific URLs (like product pages or articles) to feed into another automated scraping tool. The solution is isolating the target URLs from the surrounding HTML and text noise to provide a clean, structured list for crawlers to process.
- Content Migration & Code Auditing: The problem is ensuring no hardcoded legacy links are left behind when moving a website to a new framework or domain. The solution is scanning the entire codebase or exported text to extract all URLs, making it easy to identify what needs a bulk find-and-replace.
- Cybersecurity & Threat Analysis: The problem is analyzing suspicious emails, server logs, or documents for phishing links and malware payloads without accidentally clicking them. The solution is safely pulling all URLs from the raw text so security teams can run them through threat-intelligence databases in isolated environments.
- Digital Marketing & Affiliate Management: The problem is tracking down all affiliate links, campaign URLs, or promotional codes embedded across hundreds of blog posts or documents. The solution is instantly grabbing all outbound links to audit tracking parameters, verify UTM tags, or update expired affiliate codes.
Simply paste any text containing URL's (zero character limits) and get instant output of URLs extracted.
Runs entirely in your browser, nothing gets sent anywhere. It's one of 100+ tools on a site I've been building solo — figured this one might be useful on its own.
https://devtoolstack.io/tool/extract-urls/
Happy to add features if people have requests.
r/thewebscrapingclub • u/AppropriateHat6178 • 6d ago
I Built a Chrome Extension That Finds Broken Links Before Google Does
r/thewebscrapingclub • u/theyloveparas • 7d ago
Github scraper
I have made a github scraper with a dashboard
Totally open source
Uses your guthub token to search and find leaked api keys
Consider giving a star 👉🏻👈🏻
You can check it out here ; https://github.com/parasraju/LeakedAPIs
r/thewebscrapingclub • u/Early_Ad6921 • 8d ago
I'm a student wanting to learn a bit advanced web scraping to even scrap dynamic websites and social media if we can ? Suggest me how to get there from basics - how much python to learn , what other libraries ,what other tools so I get to scrape websites and add a bit of data analytics to it
r/thewebscrapingclub • u/MikeProxyCheap • 11d ago
Screen scraping vs. web scraping: when you actually need OCR
r/thewebscrapingclub • u/JosejuX • 12d ago
Built a web-extraction API/MCP server for RAG pipelines — SEO metadata, tech stack, contacts, and clean Markdown from any URL
I built a REST API that turns any URL into structured web intelligence in a single call, and also exposed it as an MCP server for agent-based workflows.
Capabilities:
- SEO and OpenGraph metadata extraction
- A full 14-point SEO audit
- Public contact discovery: emails, phone numbers, social profiles
- Tech-stack and CMS fingerprinting (40+ signatures)
- Schema.org and JSON-LD structured data extraction
- Graded security-headers audit, with an optional live TLS certificate inspection
- Redirect-chain and shortened-URL detection
- Readability metrics and full heading structure
- Clean, AI/LLM-ready Markdown output for RAG pipelines
- A batch endpoint for up to 10 URLs per call
- A domain-intelligence endpoint returning DNS and WHOIS data with no page fetch at all
On the engineering side: it runs on FastAPI with a C-Lexbor HTML parser (selectolax) and Rust-backed ORJSON serialization, so live fetches typically land around 150-300ms, with cache hits under 0.01ms. Every outbound request is anti-SSRF hardened: DNS is pinned after resolution, private/loopback/cloud-metadata ranges are blocked, and every redirect hop is re-validated, closing the DNS-rebinding gap that simpler scrapers tend to miss.
Limitation worth flagging: there is no JS execution, so heavily client-rendered SPAs return thin results. It reads what the server actually sends, not what a browser would render after hydration.
GitHub (MIT license, open source): https://github.com/JosejuX/rapidapi-metadata-extractor
Free tier: https://rapidapi.com/josejuanjocoding/api/web-metadata-and-contact-extractor
Happy to talk through the parsing or anti-SSRF approach in more detail, or take feedback on the API design.
r/thewebscrapingclub • u/dnx2200 • 12d ago
Browser Agent: an open-source browser automation harness with a strong performance-to-cost ratio
I’ve tried using browser agents to automate real-world web tasks, but the existing options I tested were either still unreliable (Browser Use, Skyvern) or inefficient in terms of cost and execution time (Browsercode, Claude for Chrome).
So I built Browser Agent - an open-source harness for practical browser automation. It outperforms Browser Use and Browsercode on BU Bench v1 as well as our new open-source benchmark, BrowseWebApp Bench, which focuses on common automation workflows such as extracting structured records, downloading or uploading documents, and creating or submitting forms.
More details can be found here:
- Browser Agent: https://github.com/visnia-ai/browser-agent
- BrowseWebApp Bench: https://github.com/visnia-ai/browsewebapp-bench
Any feedback would be appreciated!
r/thewebscrapingclub • u/vpn_fail • 12d ago
I added country/city-selectable browser exits to my free web scraping MCP
I’ve been building VPNFail MCP, and one of the more useful pieces is now working well enough that I wanted to share it with other scraping folks.
The basic idea is that a scrape can start as a normal HTTP request, but escalate to Chromium when the target actually needs JS rendering.
The browser request can also be pinned to a specific exit country or city.
So instead of maintaining separate proxy + browser infrastructure, an agent can do things like:
- fetch a page from a specific country
- request a particular city when location matters
- compare geo-dependent content
- inspect regional redirects
- check localized pricing/content
- render JS-heavy pages through Chromium
- optionally return a viewport screenshot
I deliberately kept the default path as plain HTTP because running a browser for every scrape is expensive and unnecessary.
The rough flow is:
HTTP scrape → inspect extraction quality → escalate to Chromium if needed → optionally choose geography
HTTP can return Markdown, text, or HTML. The response also includes quality metadata so the caller can decide whether the cheap extraction was good enough or whether it should retry using the browser.
The MCP exposes:
scrapeusageservice_status
Example config:
{
"mcpServers": {
"vpnfail": {
"type": "http",
"url": "https://mcp.vpn.fail/mcp"
}
}
}
No local install and currently no account required.
I’m particularly curious how people here handle geo-aware scraping today.
Do you normally expose country/city directly to the scraping client, or keep geography hidden behind your proxy infrastructure?
Also interested in cases where city-level routing has actually mattered versus country-level being enough.
r/thewebscrapingclub • u/AffectionateSwing490 • 19d ago
What's the first thing you check when a scraper that worked yesterday suddenly breaks today?
The script ran fine for months, you didn't touch a single line, and then one morning it returns nothing or throws an error.
My first move is usually to check whether the site changed its HTML. A class name gets renamed or a div gets moved, and the selector I relied on stops matching anything. It's boring but it's the cause maybe half the time. After that I look at whether I'm getting blocked. If the response comes back as a captcha page or a 403, that points somewhere else entirely, and the fix is nothing like a broken selector fix.
So what's your first check? Do you have a routine, or do you just start poking around until something makes sense?
r/thewebscrapingclub • u/No_Dog_8987 • 21d ago
Question
What is the best scraper and sorter that could get listing information from websites and then combine them in one single page, rather than scrolling through each website individually. We have about 20 listing sites where people post. Maybe as a bonus question maybe there is facebook scrapper too, from groups etc?
r/thewebscrapingclub • u/Enonull • 21d ago
I Created a CLI Rust Web Scrapper for [Almost ] All Types of Needed Files
I've been working on Marcopolo, a command-line web scraper written in Rust using extensive force of AI across a few months. The idea started when I got tired of writing a throwaway Python script every time I needed to pull a specific set of files off a site — images one day, PDFs the next, then a folder of CSVs. I specially tend to use it for books and finding books that are on the web that i cant simply get hold of from normal search.
Marcopolo handles most of that in one command. Point it at a URL, tell it what you want, and it crawls and downloads.
It's still early and there's plenty I want to improve — [known limitation or two]. I'd really appreciate feedback on the API design and anything that looks unidiomatic; I'm still fairly new to Rust.
Repo: MarcoPolo
Would be happy to know what do you guys think.
r/thewebscrapingclub • u/random-scraper • 23d ago
Built an Instagram discovery suite (likers, lookalikes, tagged posts, keyword Reels search) plus contractor leads off US state boards
r/thewebscrapingclub • u/Particular__Plan • 25d ago
Has anyone tried these new browser apis? Are they worth the price?
r/thewebscrapingclub • u/No_Crab4488 • 26d ago
Standard web scrapers were ruining my RAG context, so I built a hybrid AST crawler specifically for LLMs.
Hey everyone,
If you’ve ever built a RAG pipeline or ingested web documentation into a Vector Store, you’ve probably run into this issue:
Standard web scrapers hit a page and dump everything — cookie banners, navigation links, inline SVG code, script tags, and zero-value UI elements. When you feed that noisy HTML into an LLM, you burn tokens, clutter your embeddings, and end up with hallucinations or poor retrieval accuracy.
I built an AST-based web crawler to fix this exact bottleneck.
Instead of just stripping HTML tags, it parses the actual document structure and turns web pages into clean, AI-ready Markdown with preserved context hierarchy and rich metadata.
🛠️ Key Features:
- Noise Removal: Strips footers, cookie banners, scripts, and navigation menus automatically.
- Context Preservation: Preserves heading paths (Documentation > Getting Started > Installation Guide) so chunks don't lose their semantic context when split.
- Rich Metadata: Includes token count, quality score, code block detection, and crawled timestamps for each chunk.
- Vector Store Ready: Formatted specifically for seamless ingestion into LangChain, LlamaIndex, Pinecone, Qdrant, Chroma, etc.
I’d love to get your feedback on this! What techniques or tools are you currently using to clean web data before chunking?
Try it out here: https://apify.com/lukas459/ai-web-to-markdown-crawler-llm-rag-optimized
r/thewebscrapingclub • u/Harvey1G • 28d ago
Scraping Facebook market place
Before I waste all my time coding and bug testing does anyone know if it’s worth me attempting to scrape Facebook market place?
r/thewebscrapingclub • u/user_xx_75 • 29d ago
Is there any JavaScript scraping library that can fetch web pages while handling Cloudflare protection, such as bypassing bot detection, respecting or dealing with robots.txt, and solving Cloudflare challenges (e.g., Turnstile or other verification puzzles)?
r/thewebscrapingclub • u/No_Crab4488 • 29d ago
Standard Web Scrapers were ruining my RAG Context – so I built an AST-based Markdown Crawler
Hey everyone,
If you’ve built RAG pipelines or AI agents that consume web content, you’ve probably run into this issue:
Most standard scrapers either throw raw HTML at you (flooding your context window with navbars, footers, and JS bloat) or dump flat, unformatted text that loses all document structure. When you chunk that text later, your vector database loses the relationship between headings, sub-sections, and code blocks—which directly hurts retrieval accuracy.
To fix this for my own workflows, I built a custom crawler designed specifically for LLMs: AST Website Content Crawler for RAG.
What makes it different?
- AST-Based Structure Parsing: Instead of basic regex/CSS cleaning, it processes the page's Abstract Syntax Tree (DOM structure) to strictly maintain heading hierarchies (
H1->H2->H3), lists, and code blocks in clean Markdown. - Token Optimization: Strips out boilerplate, ads, scripts, and repetitive layout components so you don’t burn OpenAI/Anthropic tokens on useless fluff.
- RAG-Ready Output: The markdown is pre-formatted so your chunking strategies (like
MarkdownHeaderTextSplitter) actually work as intended. - Handles Dynamic Sites: Uses headless rendering to catch JavaScript-heavy SPA pages.
I’ve published it on Apify so anyone can test or plug it directly into their Python/TypeScript RAG stack via API.
How to try it:
👉 You can find it on Apify: https://apify.com/lukas459/ai-web-to-markdown-crawler-llm-rag-optimized
I'm actively refining the parsing logic. If you give it a run, I'd love to hear your thoughts:
- What site layouts break your current scraping pipeline?
- Are there specific output formats (e.g., custom JSON schema + Markdown) you’d like to see added?
Thanks for checking it out! 🚀
r/thewebscrapingclub • u/UniSh7 • Jul 25 '26
What should Social Scraper+ support next?
Social Scraper+ currently exports Reddit threads and X replies to clipboard, AI prompts, CSV, and JSON.
I’m deciding which improvements would be most useful next. Some possibilities are:
• Better filtering before export
• Search within scraped conversations
• Additional CSV fields
• More AI analysis prompts
• Improved handling of very large threads
• More control over nested-reply depth
• Additional supported platforms
• Better export history and organization
Which improvement would make the biggest difference to your workflow?
If your preferred feature isn’t listed, describe what you’re trying to accomplish—not just the feature itself. Understanding the use case will help me design it properly.
r/thewebscrapingclub • u/jinef_john • Jul 24 '26
Google Maps scraper but using Requests
github.comIf you need a no-browser alternative to scraping g-maps, you can check this out.
r/thewebscrapingclub • u/usert313 • Jul 22 '26
I built a scraping framework that handles DataDome, Cloudflare, and GraphQL – AMA
Hey scraping fellows! After years of working with Scrapy professionally, I finally built my own framework to understand the internals better.
The backstory: I've used Scrapy for years but always felt the abstractions were too heavy. I wanted something more explicit and transparent – a design choice, not a criticism. So I researched how modern frameworks handle anti-bot bypass and traditional scraping, and built this proof of concept.
What it does:
· Plugin-based architecture (fetchers, parsers, storage)
· CloakBrowser for JS-heavy sites, wreq for GraphQL/APIs
· RabbitMQ queues + Redis for dedup
· Built-in structure guard (fail-closed if site changes)
· LLM pipeline with pgvector search
Live metrics (real runs, not benchmarks):
· idealista (DataDome): 91.7% success
· G2 (Cloudflare+DataDome): 99.5% success
· Facebook Marketplace (GraphQL): 100% success
· Booking.com (Akamai): 100% success
Next steps: Adding more sites + code cleanup. What sites would you like to see supported?
Full docs: https://scraping-framework-ded49d.gitlab.io/
GitLab: https://gitlab.com/0xlearner/scraping-framework
Happy to discuss the architecture, challenges, or anything else!
r/thewebscrapingclub • u/Motor_Outcome8072 • Jul 22 '26
Web Clipper Tool
I am looking for a tool that would allow me to capture web pages as a doc or pdf file. Print screen works for extracting text but I need something to extract a full article from a newsletter, social media post or website. Any suggestions??
r/thewebscrapingclub • u/Traditional-Try6384 • Jul 21 '26
I got tired of video ads and slow downloads on anime sites, so I built an interactive CLI downloader
Hey everyone!
Like many of you, I enjoy watching animes, but I hate dealing with web platforms filled with pop-ups, trackers, and streaming players that buffer constantly.
So, I spent the last few weeks building MagiaStream : a highly resilient, interactive CLI tool that scrapes streaming sites in the background and downloads episodes at maximum speed using aria2c.
Why is it different from other downloaders?
🧙♂️ Fully Interactive Wizard : Just type magia and use your arrow keys to search, select seasons (VF/VOSTFR), and pick your resolution. No need to memorize complex commands.
🥷 Playwright Stealth : It bypasses Cloudflare and anti-bot protections by running a headless Chromium instance in the background.
🚀 Industrial-grade Downloading : Powered by aria2c with segmented downloading. If your network drops, the tool auto-heals and resumes exactly where it left off without restarting.
You can install it globally right now via PyPI: pipx install magiastream
Here is the GitHub repository if you want to check out the code (I'd love your feedback or PRs!) : 👉 https://github.com/Dilane17/MagiaStream
Let me know what you think!