# RAG: search a specific website

**Use case:** Prepare data for LLM & RAG pipelines

Search specific websites and return content as clean Markdown for AI processing. Simplify data extraction and enhance your RAG pipeline. Try it now.

## Input

```json
{
  "query": "site:apify.com \"rag pipeline\"",
  "maxResults": 10,
  "outputFormats": [
    "markdown"
  ],
  "requestTimeoutSecs": 40,
  "serpProxyGroup": "GOOGLE_SERP",
  "serpMaxRetries": 2,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "scrapingTool": "raw-http",
  "removeElementsCssSelector": "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\"]",
  "htmlTransformer": "none",
  "desiredConcurrency": 5,
  "maxRequestRetries": 1,
  "dynamicContentWaitSecs": 10,
  "removeCookieWarnings": true,
  "debugMode": false
}
```

## Output

```json
{
  "metadata.url": {
    "label": "Page URL",
    "format": "text"
  },
  "metadata.title": {
    "label": "Page title",
    "format": "text"
  },
  "searchResult.resultType": {
    "label": "Result type",
    "format": "text"
  },
  "markdown": {
    "label": "Markdown"
  }
}
```

## About this Actor

This example demonstrates how to use [RAG Web Browser](https://apify.com/apify/rag-web-browser) with a specific input configuration. Visit the [Actor detail page](https://apify.com/apify/rag-web-browser) to learn more, explore other use cases, and run it yourself.