# Crawl Apify blog pages for SEO metadata

**Use case:** 

Crawl a small Apify blog sample and export titles, meta descriptions, headings, text, and links for lightweight SEO and content audits.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://blog.apify.com/"
    }
  ],
  "maxPages": 5,
  "maxDepth": 1,
  "sameDomainOnly": true,
  "includeGlobs": [
    "https://blog.apify.com/**"
  ],
  "excludeGlobs": [
    "**/tag/**",
    "**/author/**",
    "**/login**"
  ],
  "outputFormat": "markdown",
  "respectRobotsTxt": true,
  "requestTimeoutSecs": 20
}
```

## Output

```json
{
  "url": {
    "label": "Requested URL",
    "format": "link"
  },
  "loadedUrl": {
    "label": "Loaded URL",
    "format": "link"
  },
  "title": {
    "label": "Title"
  },
  "description": {
    "label": "Description"
  },
  "h1": {
    "label": "H1"
  },
  "text": {
    "label": "Text"
  },
  "markdown": {
    "label": "Markdown"
  },
  "html": {
    "label": "HTML"
  },
  "links": {
    "label": "Links"
  },
  "statusCode": {
    "label": "Status"
  },
  "contentType": {
    "label": "Content type"
  },
  "depth": {
    "label": "Depth"
  },
  "parentUrl": {
    "label": "Parent URL",
    "format": "link"
  },
  "fetchedAt": {
    "label": "Fetched at",
    "format": "date"
  },
  "error": {
    "label": "Error"
  },
  "skippedReason": {
    "label": "Skipped reason"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Content Crawler Lite](https://apify.com/fetch_cat/website-content-crawler-lite) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/website-content-crawler-lite) to learn more, explore other use cases, and run it yourself.