# Extract Competitor Content to Markdown & Text

**Use case:** 

Crawl Salesforce product pages to extract clean Markdown and plain text. Get structured data ready for LLM training and reporting.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.salesforce.com/products/"
    }
  ],
  "crawlScope": "same-domain",
  "maxPagesToCrawl": 60,
  "saveMarkdown": true,
  "saveText": true,
  "saveHtml": false,
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "url": {
    "label": "Page URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "wordCount": {
    "label": "Word count",
    "format": "integer"
  },
  "metaDescription": {
    "label": "Meta description",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Website to Markdown Crawler for LLM & RAG](https://apify.com/logiover/website-text-markdown-crawler) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/website-text-markdown-crawler) to learn more, explore other use cases, and run it yourself.