# Apify RAG Web Browser Actor

> Apify RAG Web Browser Actor is a paid API for AI agents from apify-api-git-apify-top100-routes-merit-systems.vercel.app, paid per call via x402, $0.100000/call, status unknown (last checked 2026-09-14).

Executes the Apify RAG Web Browser actor to search Google, scrape the top N result pages with a full browser, and return their content for AI/RAG pipelines

## Facts

- Endpoint: POST https://apify-api-git-apify-top100-routes-merit-systems.vercel.app/api/actors/apify/rag-web-browser/call
- Price: $0.100000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apify-rag-web-browser-actor-736a679b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X_pmvtdnLXzqDx1WalLgI

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability apify-rag-web-browser-actor-736a679b -d '<json body>'
```

Example prompt: Search the web for 'best open source LLM frameworks 2024', scrape the top 5 result pages using a real browser, and return all the extracted text content so I can use it for my RAG pipeline.

## When to prefer this

Use this endpoint when you need to search the web and retrieve actual page content (not just links) for AI/RAG workflows. Prefer it over simple search APIs when you need the full text of web pages, not just snippets. Ideal for grounding LLM responses with current web content.

## Known failure modes

- Query returns no Google results — empty results array
- Target pages block scraping — partial or empty page content returned
- Actor run times out for complex or slow-loading pages
- Invalid or missing query parameter — 400 bad request
- Payment not processed — 402 payment required
- Polling token expires before results are ready

## How this service works

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… Returns a signed token for polling /api/actors/results with SIWX.

## Output

A signed polling token (SIWX) that the agent uses to poll /api/actors/results for the completed run, which ultimately returns the scraped text content from the top N Google search result pages.

## Example request

```json
{
 "input": {
  "body": {
   "input": {
    "query": "artificial intelligence",
    "maxResults": 5
   },
   "options": {
    "memory": 4096,
    "maxItems": 100
   }
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "input": {
       "description": "JSON-serializable Actor input."
      },
      "options": {
       "type": "object",
       "properties": {
        "build": {
         "type": "string",
         "maxLength": 100,
         "minLength": 1
        },
        "memory": {
         "type": "integer",
         "maximum": 32768,
         "minimum": 128
        },
        "maxItems": {
         "type": "integer",
         "maximum": 100000,
         "minimum": 1
        }
       },
       "description": "Optional Apify run options.",
       "additionalProperties": false
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apify-rag-web-browser-actor-736a679b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apify-api-git-apify-top100-routes-merit-systems.vercel.app](https://www.zero.xyz/host/apify-api-git-apify-top100-routes-merit-systems.vercel.app/llms.txt)
