# Internet Archive URL Availability Check

**Use case:** 

Check specific website URLs against the Internet Archive to see whether pages are preserved in the Wayback Machine.

## Input

```json
{
  "urls": [
    "https://apify.com",
    "https://github.com",
    "https://developer.mozilla.org"
  ]
}
```

## Output

```json
{
  "url": {
    "label": "URL"
  },
  "isAvailable": {
    "label": "Available"
  },
  "snapshotCount": {
    "label": "Snapshots"
  },
  "oldestSnapshot": {
    "label": "Oldest"
  },
  "newestSnapshot": {
    "label": "Newest"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

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