# Scrape Medium AI Articles by Tag

**Use case:** 

Extract Medium articles from the AI tag with authors, titles, claps, responses, reading time, member-only status, and URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://medium.com/tag/artificial-intelligence"
    }
  ],
  "maxArticles": 50,
  "includeLockedArticles": true,
  "proxy": {
    "useApifyProxy": false
  },
  "maxConcurrency": 3,
  "requestTimeoutSecs": 30
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "publicationDate": {
    "label": "Published",
    "format": "text"
  },
  "clapCount": {
    "label": "Claps",
    "format": "number"
  },
  "responseCount": {
    "label": "Responses",
    "format": "number"
  },
  "readingTimeMinutes": {
    "label": "Read Time (min)",
    "format": "number"
  },
  "isLocked": {
    "label": "Member Only",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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