# 🕰️ Wayback Machine Scraper — Snapshots, Dates & Status

**Use case:** 

No-code, cheap Wayback Machine API. Scrape archive data: snapshot URL, timestamp, HTTP status, MIME type, content digest, byte length — cheapest per item.

## Input

```json
{
  "urls": [
    "apify.com"
  ],
  "matchType": "exact",
  "fromDate": "",
  "toDate": "",
  "onlyStatus200": false,
  "collapse": "none",
  "maxSnapshotsPerUrl": 1000
}
```

## Output

```json
{
  "inputUrl": {
    "label": "Input Url",
    "format": "link"
  },
  "originalUrl": {
    "label": "Original Url",
    "format": "link"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "text"
  },
  "isoDate": {
    "label": "Iso Date",
    "format": "date"
  },
  "statusCode": {
    "label": "Status Code",
    "format": "text"
  },
  "mimeType": {
    "label": "Mime Type",
    "format": "text"
  },
  "digest": {
    "label": "Digest",
    "format": "text"
  },
  "length": {
    "label": "Length",
    "format": "number"
  },
  "snapshotUrl": {
    "label": "Snapshot Url",
    "format": "link"
  }
}
```

## About this Actor

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