# Pricing Support RAG Dataset from Help Center

**Use case:** 

Transform billing and pricing help articles into Markdown chunks with freshness metadata for AI support agents and vector databases.

## Input

```json
{
  "urls": [
    "https://help.apify.com/en/articles/5136728-subscribing-to-the-apify-platform",
    "https://help.apify.com/en/articles/13671754-navigating-apify-billing",
    "https://help.apify.com/en/articles/11079614-reaching-platform-limits",
    "https://help.apify.com/en/articles/7959177-subscription-plan-changes-and-proration",
    "https://help.apify.com/en/articles/11666209-applying-vat-exemption",
    "https://help.apify.com/en/articles/3490384-what-is-a-compute-unit",
    "https://help.apify.com/en/articles/5139819-paid-actors",
    "https://help.apify.com/en/articles/10700066-what-is-pay-per-event",
    "https://help.apify.com/en/articles/10774732-google-maps-scraper-is-going-to-pay-per-event-pricing",
    "https://help.apify.com/en/articles/10727112-how-to-apply-a-coupon"
  ],
  "sitemapUrl": "",
  "maxPages": 10,
  "sameDomainOnly": true,
  "respectRobotsTxt": true,
  "outputMode": "pages_and_chunks",
  "includeMarkdown": true,
  "includeSchema": false,
  "includeFreshnessSignals": true,
  "includeLinks": true,
  "includeHtml": false,
  "chunkSize": 800,
  "chunkOverlap": 100,
  "minContentChars": 500,
  "maxConcurrency": 5,
  "requestTimeoutSecs": 20,
  "maxSitemaps": 100,
  "userAgent": "WebsiteToRagDatasetBot/1.0 (+https://apify.com)",
  "urlAllowlistPatterns": [],
  "urlBlocklistPatterns": [],
  "removeSelectors": [
    "nav",
    "footer",
    "header",
    "aside",
    "script",
    "style",
    "noscript",
    "iframe",
    "form"
  ],
  "onlySelectors": [
    "main"
  ],
  "dedupeByCanonical": true,
  "saveRunSummaryToKeyValueStore": true
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "markdown": {
    "label": "Markdown",
    "format": "string"
  },
  "estimatedTokens": {
    "label": "Estimated tokens",
    "format": "integer"
  },
  "chunkCount": {
    "label": "Chunk count",
    "format": "integer"
  },
  "schemaTypes": {
    "label": "Schema types",
    "format": "array"
  },
  "processedAt": {
    "label": "Processed at",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Website to RAG Dataset](https://apify.com/sebastian-actors/website-to-rag-dataset) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sebastian-actors/website-to-rag-dataset) to learn more, explore other use cases, and run it yourself.