Millbank Pier: not step-free until further notice. More info

Index Of Memento Link May 2026

The current "index of memento link" paradigm is evolving. Researchers at Old Dominion University and LANL are working on Memento for real-time (targeting live streams) and Memento for video (timestamps inside MP4 files).

Furthermore, search engines are beginning to integrate Memento indexes. Soon, when a result is a dead link, Google or Bing may automatically query the global index of memento links and offer a "View Archived" button directly in search results.

By querying the Memento index, you can automatically replace broken external links on your site with archived versions. Services like Perma.cc and Archive.today use Memento indexes to ensure citations never die.

Using IPFS or blockchain to create a distributed, verifiable index of mementos across institutions. index of memento link

The Memento protocol is evolving. Recent developments include:

For the everyday user, the index of memento link remains the single most important tool for digital archaeology. It is the card catalog of the dead web, the Rosetta Stone for broken links, and the historian's best friend.

The Memento protocol uses the Link header with rel="timemap". To get an index of memento links for http://example.com/: The current "index of memento link" paradigm is evolving

curl -I "http://example.com/" -H "Accept-Datetime: Thu, 01 Jan 2015 12:00:00 GMT"

If the live server supports Memento, it will return a Link header pointing to the time map. However, since few live servers support this, you query the Memento Aggregator directly:

curl "http://memgator.cs.odu.edu/timemap/json/http://edition.cnn.com"

The output is a JSON index containing an array of memento links, each with a datetime and uri. You have just created an index of memento links programmatically.

For organizations that cannot trust public indexes (e.g., banks, governments), you can run your own index of memento links using open-source tools. For the everyday user, the index of memento

The Stack:

Once running, your internal index will respond to Accept-Datetime headers, effectively acting as a private Memento gateway.

Link: <http://archive.example.com/page_2001.html>; rel="memento"; datetime="Sun, 01 Jan 2001 12:00:00 GMT",
      <http://archive.example.com/page_2002.html>; rel="memento"; datetime="Mon, 01 Jan 2002 12:00:00 GMT"

Each entry includes:

Understanding why you need this index helps contextualize its value.