# AI Blog Post Finder on Web Scraping

**Use case:** 

Extract blog posts about AI web scraping from any website. Scrape the sitemap, identify relevant blog posts with AI, and get the content as LLM-ready markdown.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://blog.apify.com/"
    }
  ],
  "extractionMode": "scout",
  "prompt": "Find blog posts about AI web scrapîng.",
  "maxPagesToVisit": 100,
  "maxCrawlDepth": 5
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "data": {
    "label": "Data",
    "format": "object"
  },
  "markdown": {
    "label": "Markdown",
    "format": "text"
  }
}
```

## About this Actor

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