# See which Wikipedia articles are trending

**Use case:** 

Wikipedia articles with pageview totals, daily average, peak day and 30-day trend, plus summary and image. Any language.

## Input

```json
{
  "titles": [
    "Python (programming language)"
  ],
  "searchQueries": [
    "artificial intelligence"
  ],
  "language": "en",
  "includePageviews": true,
  "pageviewDays": 30,
  "includeDailyPageviews": false,
  "includeFullText": false,
  "maxResultsPerQuery": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "title": {
    "label": "Article",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "totalViews": {
    "label": "Total views",
    "format": "number"
  },
  "averageDailyViews": {
    "label": "Avg/day",
    "format": "number"
  },
  "peakViews": {
    "label": "Peak",
    "format": "number"
  },
  "peakDate": {
    "label": "Peak date",
    "format": "text"
  },
  "trendPercent": {
    "label": "Trend %",
    "format": "number"
  },
  "language": {
    "label": "Lang",
    "format": "text"
  },
  "url": {
    "label": "Link",
    "format": "link"
  },
  "image": {
    "label": "Image",
    "format": "image"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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