# Wayback Machine Wikipedia Snapshots Scraper

**Use case:** 

Scrape Wayback Machine CDX snapshots for wikipedia.org with original URL, timestamp, archived URL, MIME type, and status code. Export to JSON or CSV.

## Input

```json
{
  "urlOrDomain": "wikipedia.org",
  "maxItems": 50,
  "matchType": "domain",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "urlkey": {
    "label": "Urlkey",
    "format": "text"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "date"
  },
  "original": {
    "label": "Original",
    "format": "text"
  },
  "mimetype": {
    "label": "Mimetype",
    "format": "text"
  },
  "statusCode": {
    "label": "Status Code",
    "format": "text"
  },
  "digest": {
    "label": "Digest",
    "format": "text"
  },
  "length": {
    "label": "Length",
    "format": "text"
  },
  "snapshotUrl": {
    "label": "Snapshot Url",
    "format": "link"
  },
  "timestampIso": {
    "label": "Timestamp Iso",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Wayback Machine CDX URL List Scraper](https://apify.com/parseforge/wayback-cdx-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/wayback-cdx-scraper) to learn more, explore other use cases, and run it yourself.