# Wayback Machine Snapshot Search — Web Archive Scraper

**Use case:** 

Search the Internet Archive's Wayback Machine for historical snapshots of any URL. Returns typed JSON with timestamps, status codes, and archive links.

## Input

```json
{
  "urls": [
    "github.com"
  ],
  "from": "",
  "to": "",
  "limit": 100,
  "includeAvailability": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "input": {
    "label": "URL",
    "format": "string"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "string"
  },
  "originalUrl": {
    "label": "Original URL",
    "format": "string"
  },
  "statuscode": {
    "label": "Status",
    "format": "string"
  },
  "mimetype": {
    "label": "MIME Type",
    "format": "string"
  },
  "snapshotUrl": {
    "label": "Snapshot",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  },
  "scraped_at": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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