πŸ“Link Backup API

Backs up a link to the Wayback Archives (https://wayback.archive.org/), and responds with the URL to the entry.

The API host for all tools is tools.datalabs.net.


POST https://tools.datalabs.net/linkBackup
Host: tools.datalabs.net
Content-Type: application/json

{
  "key": "DATALABS_API_KEY", // Required - DataLabs API Key
  "url": "https://example.com/" // Required - URL to be backed up.
}
Example Response
{
    "success": true,
    "url": "http://web.archive.org/20240607024546/http://www.example.com/"
}

Last updated