# Medium author articles

**Use case:** 

Collect public articles from the Medium author profile with snippets enabled and a bounded result limit.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://medium.com/feed/tag/artificial-intelligence"
    },
    {
      "url": "https://medium.com/feed/@ev"
    },
    {
      "url": "https://medium.com/feed/the-generator"
    }
  ],
  "tags": [
    "artificial-intelligence",
    "data-science"
  ],
  "authors": [
    "medium"
  ],
  "publications": [
    "the-generator"
  ],
  "maxItems": 20,
  "maxItemsPerSource": 20,
  "includeSnippetHtml": true,
  "includeArticleDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "itemType": {
    "label": "Item type",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "authorName": {
    "label": "Author",
    "format": "string"
  },
  "publicationName": {
    "label": "Publication",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "url": {
    "label": "Article URL",
    "format": "string"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "snippetText": {
    "label": "Snippet text",
    "format": "string"
  },
  "input": {
    "label": "Input",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "errorCode": {
    "label": "Error code",
    "format": "string"
  }
}
```

## About this Actor

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