# Wikipedia Pageviews Scraper

**Use case:** 

Track daily Wikipedia pageviews for any articles. Export time-series traffic data to measure topic popularity and trends over time.

## Input

```json
{
  "maxItems": 3,
  "articles": [
    "Albert_Einstein",
    "ChatGPT",
    "Taylor_Swift"
  ],
  "project": "en.wikipedia.org",
  "granularity": "daily",
  "access": "all-access",
  "agent": "all-agents"
}
```

## Output

```json
{
  "project": {
    "label": "Project",
    "format": "text"
  },
  "article": {
    "label": "Article",
    "format": "text"
  },
  "granularity": {
    "label": "Granularity",
    "format": "text"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "number"
  },
  "access": {
    "label": "Access",
    "format": "text"
  },
  "agent": {
    "label": "Agent",
    "format": "text"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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