# Wikimedia Commons Dog Media Scraper

**Use case:** 

Search Wikimedia Commons for dog media with image URL, thumbnail, title, MIME type, size, dimensions, uploader, and description. Export to JSON or CSV.

## Input

```json
{
  "mode": "search",
  "search": "dog",
  "titles": [
    "File:Mona Lisa.jpg"
  ],
  "maxItems": 5
}
```

## Output

```json
{
  "thumbUrl": {
    "label": "🖼 Thumbnail",
    "format": "image"
  },
  "title": {
    "label": "📌 Title",
    "format": "text"
  },
  "pageId": {
    "label": "🆔 Page ID",
    "format": "number"
  },
  "mime": {
    "label": "🗂 MIME",
    "format": "text"
  },
  "width": {
    "label": "↔ Width",
    "format": "number"
  },
  "height": {
    "label": "↕ Height",
    "format": "number"
  },
  "size": {
    "label": "💾 Size",
    "format": "number"
  },
  "licenseShortName": {
    "label": "⚖ License",
    "format": "text"
  },
  "artist": {
    "label": "✍ Author",
    "format": "text"
  },
  "descriptionUrl": {
    "label": "🔗 File Page",
    "format": "link"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

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