# Analyze Competitor Tech Stacks for RAG

**Use case:** 

Scrape public information about competitors' technology stacks and product features from their websites and news articles. This structured data feeds into RAG s

## Input

```json
{
  "query": "competitor technology stack [competitor name example: Salesforce] OR [competitor name example: HubSpot]",
  "startUrls": [],
  "maxResults": 4,
  "outputFormats": [
    "markdown"
  ],
  "requestTimeoutSecs": 40,
  "scrapingTool": "raw-http",
  "removeElementsCssSelector": "nav, footer, aside, script, style, .ad, .advertisement, [aria-hidden='true'], .blog-sidebar",
  "htmlTransformer": "readable-text",
  "desiredConcurrency": 5,
  "maxRequestRetries": 2,
  "dynamicContentWaitSecs": 5,
  "removeCookieWarnings": true,
  "useApifyProxy": true,
  "domainAllowlist": [],
  "domainBlocklist": [
    "reddit.com",
    "quora.com"
  ],
  "excludeContentSelectors": [],
  "keywordsAnyOf": [
    "tech stack",
    "technology",
    "platform",
    "features",
    "solutions",
    "CRM",
    "marketing automation"
  ]
}
```

## Output

```json
{
  "url": {
    "label": "Url"
  },
  "title": {
    "label": "Title"
  },
  "description": {
    "label": "Description"
  },
  "wordCount": {
    "label": "Word count"
  },
  "httpStatusCode": {
    "label": "Http status code"
  },
  "loadedTime": {
    "label": "Loaded time"
  },
  "searchRank": {
    "label": "Search rank"
  }
}
```

## About this Actor

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