Start the "RAG Web Browser" Apify actor (apify/rag-web-browser)
Start the "RAG Web Browser" Apify actor (apify/rag-web-browser). Web search and fetch tool for AI agents and RAG pipelines. It queries Google Search, scrapes the top N pages using a full web browser, and returns their conten…
Answeringour last check, 2026-09-24
1 of 1checks answered this week
260 msmedian answer time
$0.01listed price per call
$0.01price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://apify-dlfd68ww7-merit-systems.vercel.app/api/actors/apify/rag-web-browser/call
| Category | Search and research |
|---|---|
| Provider host | apify-dlfd68ww7-merit-systems.vercel.app |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 260 ms |
Example input (from the provider)
{
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"input": {
"additionalProperties": {},
"description": "Normalized actor input. See field descriptions for the simplified shape; native Apify input also accepted (passed through).",
"properties": {
"debugMode": {
"default": false,
"description": "If enabled, the Actor will store debugging information into the resulting dataset under the `debug` field.",
"type": "boolean"
},
"desiredConcurrency": {
"default": 5,
"description": "The desired number of web browsers running in parallel. The system automatically scales the number based on the CPU and memory usage. If the initial value is `0`, the Actor picks the number automatically based on the available memory.",
"maximum": 50,
"minimum": 0,
"type": "integer"
},
"dynamicContentWaitSecs": {
"default": 10,
"description": "The maximum time in seconds to wait for dynamic page content to load. The Actor considers the web page as fully loaded once this time elapses or when the network becomes idle.",
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
"htmlTransformer": {
"default": "none",
"description": "Specify how to transform the HTML to extract meaningful content without any extra fluff, like navigation or modals. The HTML transformation happens after removing and clicking the DOM elements. - **None** (default) - Only removes the HTML elements specified via 'Remove HTML elements' option. - **Readable text** - Extracts the main contents of the webpage, without navigation and other fluff.",
"type": "string"
},
"maxRequestRetries": {
"default": 1,
"description": "The maximum number of times the Actor will retry loading the target web page on error. If the last attempt fails, the page will be skipped in the results.",
"maximum": 3,
"minimum": 0,
"type": "integer"
},
"maxResults": {
"default": 3,
"description": "The maximum number of top organic Google Search results whose web pages will be extracted. If `query` is a URL, then this field is ignored and the Actor only fetches the specific web page.",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"outputFormats": {
"default": [
"markdown"
],
"description": "Select one or more formats to which the target web pages will be extracted and saved in the resulting dataset.",
"items": {
"enum": [
"text",
"markdown",
"html"
],
"type": "string"
},
"type": "array"
},
"proxyConfiguration": {
"additionalProperties": {},
"default": {
"useApifyProxy": true
},
"description": "Apify Proxy configuration used for scraping the target web pages.",
"properties": {
"apifyProxyCountry": {
"type": "string"
},
"apifyProxyGroups": {
"items": {
"type": "string"
},
"type": "array"
},
"proxyUrls": {
"items": {
"type": "string"
},
"type": "array"
},
"useApifyProxy": {
"type": "boolean"
}
},
"type": "object"
},
"query": {
"description": "Enter Google Search keywords or a URL of a specific web page. The keywords might include the [advanced search operators](https://blog.apify.com/how-to-scrape-google-like-a-pro/). Examples: - san francisco weather - https://www.cnn.com - function calling site:openai.com",
"pattern": "[^\\s]+",
"type": "string"
},
"removeCookieWarnings": {
"default": true,
"description": "If enabled, the Actor attempts to close or remove cookie consent dialogs to improve the quality of extracted text. Note that this setting increases the latency.",
"type": "boolean"
},
"removeElementsCssSelector": {
"default": "nav, footer, script, style, noscript, svg, img[src^='data:'],\n[role=\"alert\"],\n[role=\"banner\"],\n[role=\"dialog\"],\n[role=\"alertdialog\"],\n[role=\"region\"][aria-label*=\"skip\" i],\n[aria-modal=\"true\"]",
"description": "A CSS selector matching HTML elements that will be removed from the DOM, before converting it to text, Markdown, or saving as HTML. This is useful to skip irrelevant page content. The value must be a valid CSS selector as accepted by the `document.querySelectorAll()` function. By default, the Act