For Agents
Render JavaScript pages, extract structured data from URLs, scrape SERPs, and convert pages to PDF or PNG without managing browsers or proxies.
Get started with Dataflow Kit Web Scraper in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"render a javascript page and return the html"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Dataflow Kit Web Scraper API.
Fetch a fully rendered HTML page with rotating proxies via POST /fetch
Extract structured records from a URL using a Dataflow Kit visual recipe via POST /parse
Scrape Google, Bing, and DuckDuckGo result pages via POST /serp
Convert any URL to a PDF document via POST /convert/url/pdf
GET STARTED
Use for: Fetch the rendered HTML for a JavaScript-heavy product page, Scrape Google search results for a specific query, Extract structured product data from a list of URLs, Convert a published article URL to a PDF for archival
Not supported: Does not handle proxy purchase, residential IP rentals, or CAPTCHA-solving as standalone services — use for managed page rendering, parsing, SERP scraping, and URL-to-media conversion only.
Dataflow Kit is a managed web scraping service that renders JavaScript-driven pages using a hosted Headless Chrome fleet behind rotating proxies. The five-endpoint REST API covers raw page fetching, structured parsing via point-and-click recipes, search engine results page (SERP) scraping, and converting any URL to a PDF or full-page screenshot. Authentication is a single api_key query parameter and responses come back as JSON, ready to feed into a database or AI pipeline.
Capture a full-page screenshot of a URL via POST /convert/url/screenshot
Drive scraping jobs from agents without running a Chrome cluster or proxy pool
Patterns agents use Dataflow Kit Web Scraper API for, with concrete tasks.
★ JavaScript Page Rendering
Many modern sites render content client-side, so a plain HTTP GET returns an empty shell. Dataflow Kit's POST /fetch endpoint runs the page through a hosted Headless Chrome instance behind a rotating proxy, then returns the fully rendered HTML. Teams use this to scrape single-page applications, product pages, and infinite-scroll feeds without operating a Selenium farm. Setup is a single API key call and integrations typically land in a few hours.
POST /fetch with target URL https://example-shop.com/products/123 and return the rendered HTML body
SERP Monitoring
SEO teams and competitive intelligence pipelines call POST /serp to pull structured Google, Bing, and DuckDuckGo result pages for tracked keywords. The endpoint handles proxy rotation, CAPTCHA evasion, and country/locale targeting so the consuming application only needs to send a query and receive a parsed list of organic and paid results.
POST /serp with query 'best running shoes 2026', engine 'google', country 'us' and return the top 10 organic results
Page-to-PDF Archival
Compliance, legal, and research teams use POST /convert/url/pdf to capture a snapshot of a web page as a PDF at a specific moment in time. The endpoint renders the page, applies print styles, and returns a binary PDF — useful for archiving terms-of-service changes, news articles, or competitor pricing pages with timestamped fidelity.
POST /convert/url/pdf with URL https://example.com/terms and save the returned PDF to s3://archive/terms-2026-06-10.pdf
AI Agent Web Data Extraction
AI agents that need fresh web data call Dataflow Kit through Jentic to fetch rendered HTML, scrape SERPs, or extract structured records using a saved Dataflow Kit recipe. Jentic isolates the api_key in its vault, so agents pass the target URL and recipe ID without ever touching the credential.
Call POST /parse with a saved recipe ID and a list of 50 product URLs to return a structured table of name, price, and stock status
5 endpoints — dataflow kit is a managed web scraping service that renders javascript-driven pages using a hosted headless chrome fleet behind rotating proxies.
METHOD
PATH
DESCRIPTION
/fetch
Render a URL via Headless Chrome and return HTML
/parse
Extract structured data from a URL using a saved recipe
/serp
Scrape search engine result pages
/convert/url/pdf
Convert a rendered URL to a PDF
/convert/url/screenshot
Capture a full-page screenshot of a URL
/fetch
Render a URL via Headless Chrome and return HTML
/parse
Extract structured data from a URL using a saved recipe
/serp
Scrape search engine result pages
/convert/url/pdf
Convert a rendered URL to a PDF
/convert/url/screenshot
Capture a full-page screenshot of a URL
Three things that make agents converge on Jentic-routed access.
Credential isolation
Dataflow Kit api_key query parameter values are stored encrypted in the Jentic vault. Agents receive scoped access tokens — the raw api_key never enters the agent's context or appears in logs.
Intent-based discovery
Agents search by intent (e.g. 'render a JavaScript page' or 'scrape Google results') and Jentic returns matching Dataflow Kit operations with their input schemas, so the agent calls /fetch, /serp, or /parse directly without browsing docs.
Time to first call
Direct Dataflow Kit integration: a few hours for auth, payload shaping, and error handling. Through Jentic: under 15 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
ScraperAPI
ScraperAPI offers similar managed proxy + Headless Chrome rendering with a slightly different pricing model and structured-output product.
Choose ScraperAPI when you want a single proxy-rotation endpoint and don't need Dataflow Kit's visual recipe parser.
ZenRows
ZenRows is a competing proxy + headless rendering API focused on anti-bot bypass.
Choose ZenRows for sites with aggressive anti-bot defenses; choose Dataflow Kit when you need built-in PDF/screenshot conversion in the same API.
Apify
Apify provides a marketplace of pre-built scrapers and orchestration; Dataflow Kit handles raw rendering and parsing primitives.
Use Apify for vertical-specific actors (Instagram, LinkedIn) and Dataflow Kit when you need a low-level fetch/parse/SERP primitive controlled directly by your agent.
Specific to using Dataflow Kit Web Scraper API through Jentic.
What authentication does the Dataflow Kit Web Scraper API use?
Dataflow Kit uses an API key passed as the api_key query parameter on every request. Through Jentic, that key is stored encrypted in the MAXsystem vault and injected at call time, so agents never handle the raw secret.
Can I scrape JavaScript-rendered pages with the Dataflow Kit API?
Yes. POST /fetch routes the URL through a hosted Headless Chrome instance behind rotating proxies and returns the fully rendered HTML, which is the right call for single-page applications and dynamically loaded content.
What are the rate limits for the Dataflow Kit Web Scraper API?
Concurrency and monthly request quotas depend on the Dataflow Kit plan tied to your api_key — see account.dataflowkit.com for current limits. The spec does not enforce per-endpoint limits.
How do I scrape Google search results through Jentic?
Search Jentic for 'scrape Google search results', load the POST /serp operation, and execute it with your query, target engine, and country. Jentic injects the api_key automatically and returns the parsed result list.
Can the Dataflow Kit API capture screenshots and PDFs of web pages?
Yes. POST /convert/url/screenshot returns a full-page PNG and POST /convert/url/pdf returns a print-ready PDF of any URL, both rendered through the same Headless Chrome backend used for /fetch.
Does Dataflow Kit handle proxies and CAPTCHAs?
Yes. The service manages a rotating proxy pool and CAPTCHA evasion internally, so callers only need to supply the target URL or query — there is no separate proxy configuration in the API.