Launched this week

SCRAPR
The data layer for the agentic web
389 followers
The data layer for the agentic web
389 followers
SCRAPR is a new approach to web data extraction. Instead of relying on fragile DOM selectors or heavy browser automation, SCRAPR looks at how modern websites actually load their data and extracts structured responses directly from those sources. The goal is to make web data pipelines faster, more reliable, and easier to maintain. Right now SCRAPR is in early MVP and we’re looking for developers, data teams, and AI builders who need clean structured data from websites.




SCRAPR
I built SCRAPR after running into the same problem again and again:
Getting structured data from websites is still way harder than it should be.
Most tools fall into two buckets:
• Browser automation (Puppeteer / Selenium) — slow and expensive
• Traditional scrapers — fragile and constantly breaking
SCRAPR tries a different approach.
Instead of rendering pages or parsing messy HTML, it focuses on how websites actually load their data and extracts structured responses from there.
The goal is to make web data extraction more reliable — especially for AI pipelines and data workflows.
It’s still early (MVP stage), and I’m looking for builders who want to try it and give feedback.
Cue
Intercepting network calls instead of rendering pages is a smart approach. Way less fragile than the usual scraping setups. What kinds of sites have been trickiest to support so far?
SCRAPR
@dparrelli Thanks, appreciate that!
Some of the trickier ones tend to be sites that generate requests dynamically or rely heavily on session-based flows, since those can behave differently depending on how the page loads.
But overall most modern sites still rely on some form of underlying data requests.
BrandingStudio.ai
Most scrapers fight the rendered HTML. This goes upstream to where the data actually comes from, am I understanding that right? That's quite interesting.
What gets me most is the stability angle. Anything built on CSS selectors or DOM structure breaks the moment a site redesigns its front-end. If you're anchored to the underlying API calls instead, that problem should mostly disappear.
I'm building an AI platform that pulls structured data into its pipeline, so this is genuinely relevant to me. The edge case I keep running into with this type of approach: sites that sign their internal API requests dynamically, session tokens, HMAC signatures, that kind of thing. How does SCRAPR handle those? That's usually where it gets complicated in my experience.
SCRAPR
SCRAPR
@vouchy @vemulasukrit Does SCRAPR have a fallback when the fetch or GraphQL endpoints behind a page change or disappear? Going to the site's real data source feels much cleaner than chasing selectors, but that recovery path is what makes it production-safe.
SCRAPR
This approach is super clever — basically doing what I always do manually in Chrome DevTools Network tab (hunting for those fetch/GraphQL calls) but automated 😮
Does the engine just statically analyze the page source to find those internal API requests, or does it use AI/LLM in some way to detect and reconstruct the right endpoints even on tricky sites?
And how well does it handle completely arbitrary URLs — like, throw any random modern site at it and it still finds the clean data source reliably?
SCRAPR
The interception approach is clever, way faster than spinning up a headless browser for every request. Have you thought about a batch endpoint where you can throw a list of URLs at it in one call? Anytime I've built a scraping pipeline for a project, the single-URL-at-a-time loop is where things get slow and annoying to manage.
SCRAPR
Copus
Really smart approach to web scraping. Focusing on where data actually comes from rather than relying on DOM selectors is a much more resilient strategy. Most scraping tools break the moment a site updates its frontend, so anchoring to underlying API calls makes a lot of sense.
Curious about how you handle rate limiting and sites that aggressively block automated access. Either way, congrats on the launch!
SCRAPR