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…
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-31
updated
Provider
apify-dlfd68ww7-merit-systems.vercel.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x23d931f95831cee50b5f5edf4d0e88270f6c8411",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$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 Actor removes common navigation elements, headers, footers, modals, scripts, and inline image. You can disable the removal by setting this value to some non-existent CSS selector like `dummy_keep_everything`.",
"type": "string"
},
"requestTimeoutSecs": {
"default": 40,
"description": "The maximum time in seconds available for the request, including querying Google Search and scraping the target web pages. For example, OpenAI allows only [45 seconds](https://platform.openai.com/docs/actions/production#timeouts) for custom actions. If a target page loading and extraction exceeds this timeout, the corresponding page will be skipped in results to ensure at least some results are returned within the timeout. If no page is extracted within the timeout, the whole request fails.",
"maximum": 300,
"minimum": 1,
"type": "integer"
},
"scrapingTool": {
"default": "raw-http",
"description": "Select a scraping tool for extracting the target web pages. The Browser tool is more powerful and can handle JavaScript heavy websites, while the Plain HTML tool can't handle JavaScript but is about two times faster.",
"enum": [
"browser-playwright",
"raw-http"
],
"type": "string"
},
"serpMaxRetries": {
"default": 2,
"description": "The maximum number of times the Actor will retry fetching the Google Search results on error. If the last attempt fails, the entire request fails.",
"maximum": 5,
"minimum": 0,
"type": "integer"
},
"serpProxyGroup": {
"default": "GOOGLE_SERP",
"description": "Enables overriding the default Apify Proxy group used for fetching Google Search results.",
"enum": [
"GOOGLE_SERP",
"SHADER"
],
"type": "string"
}
},
"required": [
"query",
"maxResults",
"outputFormats",
"requestTimeoutSecs",
"serpProxyGroup",
"serpMaxRetries",
"proxyConfiguration",
"scrapingTool",
"removeElementsCssSelector",
"htmlTransformer",
"desiredConcurrency",
"maxRequestRetries",
"dynamicContentWaitSecs",
"removeCookieWarnings",
"debugMode"
],
"type": "object"
},
"options": {
"additionalProperties": false,
"description": "Optional Apify run options.",
"properties": {
"build": {
"maxLength": 100,
"minLength": 1,
"type": "string"
},
"maxItems": {
"maximum": 100000,
"minimum": 1,
"type": "integer"
},
"memory": {
"maximum": 32768,
"minimum": 128,
"type": "integer"
}
},
"type": "object"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://apify-dlfd68ww7-merit-systems.vercel.app/api/actors/apify/rag-web-browser/call" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://apify-dlfd68ww7-merit-systems.vercel.app/api/actors/apify/rag-web-browser/call");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://apify-dlfd68ww7-merit-systems.vercel.app/api/actors/apify/rag-web-browser/call")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/15651.json, and this resource appears in /discovery/resources and /discovery/search.