Tools / Web Archive
Web Archive icon

Web Archive

Historical snapshots of any website

Look back at how any website looked at any point in history. Check if a URL has been archived, browse captures across date ranges, or get year-by-year summaries. For competitive research, recovering lost content, and investigating website histories.

3 skillsv0.02
Check Availability

Check if a URL has been archived and get the closest snapshot to a given date. Returns the archived snapshot URL and metadata.

Returns: Whether the URL is archived, closest snapshot URL, timestamp, and HTTP status of the archived page
Parameters
url *stringThe URL to check for archived snapshots (e.g. "https://example.com")
datestringTarget date in YYYY-MM-DD format to find the closest snapshot (defaults to latest available)
Example
Check if example.com has been archived
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "web-archive",
  "skill": "check_availability",
  "input": {
    "url": "https://example.com"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Search Captures

Search capture history for a URL with date range filters. Shows how many times a page was archived and when, with viewable archive links.

Returns: List of captures with timestamps, original URLs, MIME types, status codes, and viewable archive URLs
Parameters
url *stringThe URL to search captures for (e.g. "https://example.com")
from_datestringStart date filter in YYYY-MM-DD format
to_datestringEnd date filter in YYYY-MM-DD format
limitnumberMax results to return (default 10, max 50)
filter_statusstringFilter by HTTP status code (e.g. "200" for successful captures only)
Example
Find recent captures of a website
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "web-archive",
  "skill": "search_captures",
  "input": {
    "url": "https://example.com",
    "limit": 5
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Site History

Get a summary of how many times a domain or URL has been archived, with yearly capture counts. Useful for understanding a site's web presence over time.

Returns: Total capture count, first and last archived dates, and yearly breakdown of capture counts
Parameters
url *stringThe URL or domain to get archive history for (e.g. "example.com")
from_yearnumberStart year to filter history (e.g. 2000)
to_yearnumberEnd year to filter history (e.g. 2025)
Example
Get archive history of a domain for a single year
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "web-archive",
  "skill": "site_history",
  "input": {
    "url": "example.com",
    "from_year": 2020,
    "to_year": 2020
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Loading reviews...
Loading activity...
v0.022026-03-22
  • Added subtitle, expanded description, and agent instructions
v0.012026-03-20
  • Initial release

Quick Start

MCP (Claude Code)
claude mcp add --transport stdio \
  --env TOOLROUTER_API_KEY=YOUR_API_KEY \
  toolrouter -- npx -y toolrouter-mcp
REST API
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{"tool":"web-archive","skill":"check_availability","input":{}}' \
  https://api.toolrouter.com/v1/tools/call

Use Cases

Open View Historical Websites

View Historical Websites

Look up how any website appeared at a specific point in time using Wayback Machine snapshots.

Web Archive icon
Web Archive
4 agent guides
Open Research Competitor Changes

Research Competitor Changes

Track how competitor websites, pricing pages, and messaging have evolved over time using archived snapshots.

Web Archive icon
Web Archive
4 agent guides
Open Search Papers by Topic

Search Papers by Topic

Find relevant academic papers on any research topic across millions of scholarly publications.

Academic Research icon
Academic Research
4 agent guides
Open Geocode Addresses to Coordinates

Geocode Addresses to Coordinates

Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.

Address Geocoding icon
Address Geocoding
4 agent guides
View all use cases for Web Archive

Workflows

Open Domain Acquisition Research

Domain Acquisition Research

Research domain acquisition opportunities by searching availability, checking ownership, examining DNS, and reviewing domain history.

Domain Search icon
Domain Search
Whois RDAP icon
Whois RDAP
DNS Domain icon
DNS Domain
Web Archive icon
Web Archive
4 steps4 tools
Open Domain Intelligence Report

Domain Intelligence Report

Build a comprehensive intelligence report on any domain using WHOIS, DNS, geolocation, and web archive data.

Whois RDAP icon
Whois RDAP
DNS Domain icon
DNS Domain
IP Geolocation icon
IP Geolocation
Web Archive icon
Web Archive
4 steps4 tools
Open Pre-Acquisition Domain Audit

Pre-Acquisition Domain Audit

Audit a domain before purchase by reviewing registration history, DNS state, web archive history, and SEO reputation.

Whois RDAP icon
Whois RDAP
DNS Domain icon
DNS Domain
Web Archive icon
Web Archive
SEO Analysis icon
SEO Analysis
4 steps4 tools
Open Web Content Archiver

Web Content Archiver

Archive web pages completely with archive checks, content extraction, and visual screenshots.

Web Archive icon
Web Archive
Web Scraper icon
Web Scraper
Web Screenshot icon
Web Screenshot
3 steps3 tools

Frequently Asked Questions

Can I see how a site looked on a specific date?

Yes. `check_availability` finds the closest archived snapshot to the date you want and returns a viewable archive URL.

Can I browse the full archive history of a page?

Use `search_captures` to see the capture timeline, filter by dates, and open specific archived versions.

Can I get a summary of a site over time?

Yes. `site_history` shows total captures, first and last archived dates, and the year-by-year breakdown.

Do I have to use a full URL?

No. Both domains and full URLs are accepted, depending on how specific you want the archive search to be.