# Bulk Wikipedia Fetch: Get Page Data by Title

**Use case:** 

Pass up to 50 page titles and get each Wikipedia entry's intro, thumbnail, and categories back as clean JSON for datasets and enrichment.

## Input

```json
{
  "searchQuery": "machine learning",
  "pageTitles": [
    "Japan",
    "Brazil",
    "Germany",
    "Kenya",
    "Canada"
  ],
  "fullText": false,
  "language": "en",
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "snippet": {
    "label": "Snippet",
    "format": "text"
  },
  "extract": {
    "label": "Extract",
    "format": "text"
  },
  "wordcount": {
    "label": "Words",
    "format": "number"
  },
  "thumbnail": {
    "label": "Thumbnail",
    "format": "link"
  }
}
```

## About this Actor

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