# Webpage text extractor for SaaS blogs

**Use case:** 

Extract clean article text, metadata, word counts, headings, and links from SaaS blog pages for content research and analysis.

## Input

```json
{
  "urls": [
    "https://blog.apify.com/web-scraping-for-lead-generation/",
    "https://blog.apify.com/web-scraping-tools/"
  ],
  "includeMetadata": true
}
```

## Output

```json
{
  "url": {
    "label": "URL"
  },
  "title": {
    "label": "Title"
  },
  "language": {
    "label": "Language"
  },
  "wordCount": {
    "label": "Words"
  },
  "charCount": {
    "label": "Characters"
  },
  "author": {
    "label": "Author"
  },
  "publishedDate": {
    "label": "Published"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

This example demonstrates how to use [Webpage Text Extractor](https://apify.com/automation-lab/webpage-text-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/webpage-text-extractor) to learn more, explore other use cases, and run it yourself.