get_archived_page
Retrieve archived webpage content from the Wayback Machine using a specific URL and timestamp, with options to exclude the Wayback banner.
Instructions
Retrieve the content of an archived webpage from the Wayback Machine
Input Schema
Name | Required | Description | Default |
---|---|---|---|
original | No | Whether to get the original content without Wayback Machine banner (default: false) | |
timestamp | Yes | Timestamp in YYYYMMDDHHMMSS format | |
url | Yes | URL of the page to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"original": {
"description": "Whether to get the original content without Wayback Machine banner (default: false)",
"type": "boolean"
},
"timestamp": {
"description": "Timestamp in YYYYMMDDHHMMSS format",
"type": "string"
},
"url": {
"description": "URL of the page to retrieve",
"type": "string"
}
},
"required": [
"url",
"timestamp"
],
"type": "object"
}