What is Scrappey

A web data API for content you are authorized to access. One integration, managed browser sessions, pay per success.


What is web scraping?

Web scraping is reading a web page with a program instead of a browser window, then turning what comes back into data your code can use. The hard part is rarely the parsing — it is getting a complete, rendered page in the first place. Modern sites build much of their content with JavaScript after the first response, carry state in cookies across several requests, and vary what they return by region.

What is a web scraping API?

A web scraping API takes the retrieval half of that problem off your hands. You send it a URL; it performs the request — running a real browser when the page needs one — and returns the rendered HTML along with the cookies from that session. You keep writing the part that is specific to your project: which pages to fetch, and what to pull out of them.

How Scrappey fits in

Scrappey manages browser sessions, proxy rotation, and headless rendering behind a single endpoint, and returns rendered HTML, cookies, screenshots, or structured data. Cookies come back with the response, so you can hand them to your own HTTP client and keep a session going. Multi-step interactions — filling a form, clicking through navigation — are scripted with browserActions. Billing is per successful request: failed requests cost nothing and your balance does not expire.

Your code
n8n / Make
LangChain
MCP / agents
S
Scrappey
Target site

What you get

  • Rendered HTML and the session cookies, reusable in your own HTTP client
  • Proxy rotation with regional selection
  • Scripted browser interactions for forms and multi-step navigation
  • Screenshots and structured extraction
  • Pay per success — failed requests are free
0
Free requests to start
$0
Charged on failed requests
No
Subscription required
Balance never expires

Start here

Integrations

Plug Scrappey into your stack

Drop Scrappey into Claude Code, LangChain, LlamaIndex, n8n, Make, Zapier, Apify, and RapidAPI. Same pay-as-you-go pricing across every integration — use it only for data you are authorized to collect.

n

n8n

Workflow Automation

Automate data collection across 1,000+ apps with visual workflows. Pre-authenticated Scrappey node.

n

n8n Template

Ready-to-Use Workflow

Pre-built workflow for collecting data from dynamic, JS-heavy pages you are authorized to access — import and run in seconds.

M

Make

Automation Platform

Connect Scrappey with 1,000+ apps inside Make's visual scenario builder. No code required.

Z

Zapier

Automation Platform

Wire Scrappey into 7,000+ apps through Zapier. Trigger authorized data collection on a schedule, on webhook, or from any Zap.

L

LangChain

AI Framework

Official Scrappey connector for LangChain. Drop browser-rendered page retrieval into any chain or agent — clean text ready for your LLM, for content you are authorized to access.

Show setupnpm install @scrappey/langchain
import { ScrappeyLoader } from "@scrappey/langchain";

const loader = new ScrappeyLoader({
  apiKey: process.env.SCRAPPEY_API_KEY!,
  url: "https://example.com",
});

const docs = await loader.load();
// → docs[0].pageContent is clean text your LLM can reason over
L

LlamaIndex

RAG Data Loader

LlamaIndex reader that ingests dynamic, JS-heavy pages you are authorized to access straight into your RAG pipeline. Returns Document objects ready to embed.

Show setuppip install llama-index-readers-scrappey
from llama_index_readers_scrappey import ScrappeyReader

reader = ScrappeyReader(api_key="YOUR_KEY")
docs = reader.load_data(urls=["https://example.com"])
# → docs is a list of llama_index Document objects
C

Claude Code Skill

AI Agent Skill

Portable SKILL.md bundle that gives Claude Code (and any SKILL.md-compatible agent) browser-rendered page retrieval out of the box — for content you are authorized to collect.

Show setup
# Drop the skill into your Claude Code skills folder
git clone https://github.com/pim97/scrappey-skill \
  ~/.claude/skills/scrappey
# Set your API key
export SCRAPPEY_API_KEY="your_key_here"
M

MCP Server

AI Integration

MCP server that bridges any MCP-compatible AI model (Claude, Cursor, etc.) with Scrappey browser automation and session management.

Show setup
{
  "mcpServers": {
    "scrappey": {
      "command": "npx",
      "args": ["-y", "mcp-server-scrappey"],
      "env": { "SCRAPPEY_API_KEY": "your_key_here" }
    }
  }
}
A

Apify

Actor Platform

Scrappey as an Apify actor. Combine browser rendering with Apify's job infrastructure for scalable, authorized data collection.

R

RapidAPI

API Marketplace

Access Scrappey through RapidAPI with unified authentication and the RapidAPI dashboard.

Glossary

Explore the concepts

Every web automation and browser data access concept we use across the docs, linked to the concepts it depends on — 151 terms · 407 connections. Search the map, filter by category, and click a node to preview its definition.

Hover · drag · click a term

Latest updates

Recently Updated

Ethics

Responsible use

Scrappey.com is built for lawful data collection — SEO monitoring, ad verification, market research, price aggregation, and academic research, where you have authorization from the content owner or are otherwise permitted by applicable law. We prohibit activity that infringes others' rights, and suspend accounts that violate our Terms of Service.

Reporting abuse

If you believe our service has been used in a way that violates your rights, contact us with the details. Once verified, we will terminate the offending account's access and cooperate with legitimate requests to the extent permitted by law.

To report abuse or for any inquiries:

[email protected]
Browse all pagesEvery page in the docs, grouped by category

Get started

Ship your first request today

Start with 150 free requests — no credit card, no subscription.