# Get a list of writer for any blog

**Use case:** 

Extract profiles of writers from any blog, including their names, titles, and links to their three most recent articles.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://blog.apify.com/"
    }
  ],
  "extractionMode": "agentic",
  "prompt": "Find writer profiles.\nFor each writer, include the name and title of their 3 last three articles.",
  "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.