Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Dataflow Kit Web Scraper, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fdataflowkit.com%2Fdataflowkit" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fdataflowkit.com%2Fdataflowkit" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
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
Capture a full-page screenshot of a URL via POST /convert/url/screenshot
GET STARTED
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
What agents get from Jentic-routed access to this vendor.
Setup
Wiring Dataflow Kit by hand means learning its api_key query auth against api.dataflowkit.com/v1 and building the rendering, parsing, and retry plumbing for scrape jobs yourself. Through Jentic you install once, import the Dataflow Kit Web Scraper from the API Directory, store the key once, and your agent calls it.
Permission scoping
Dataflow Kit passes its target URLs and parse rules in the request body rather than a resource id in the path, so limit the agent to the operations it needs, such as fetching a page or scraping SERP results. Every operation the agent can run is one you added to that allowed set.
Credential isolation
Your Dataflow Kit api_key is stored once, encrypted, by your own Jentic One instance and appended as the api_key query parameter at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'render a JavaScript page' or 'scrape Google results', and Jentic returns the matching Dataflow Kit operation with its input schema so the agent calls the right endpoint without browsing the docs.
Alternatives and complements available in the Jentic catalogue.
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 your Jentic One instance 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.
Can I limit what my agent is allowed to do with the Dataflow Kit Web Scraper API?
Yes. Because you run Jentic One yourself, your own rules decide which Dataflow Kit operations the agent may call and which credentials it may use. Since Dataflow Kit takes target URLs and parse rules in the request body rather than a resource id in the path, you scope access per operation: allow only POST /fetch to render pages, or add POST /serp for search results, while withholding POST /parse, POST /convert/url/pdf, or POST /convert/url/screenshot. Every operation the agent can run is one you explicitly added to the allowed set.
For Agents
Render JavaScript pages, extract structured data from URLs, scrape SERPs, and convert pages to PDF or PNG without managing browsers or proxies.
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.