get_archived_page
Retrieve archived webpage content from the Wayback Machine using a specific timestamp to access historical website versions and data.
Instructions
Retrieve content of an archived webpage from the Wayback Machine using YYYYMMDDHHMMSS timestamp. If original=true, request id_ mode.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
original | No | ||
timestamp | Yes | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"original": {
"default": false,
"title": "Original",
"type": "boolean"
},
"timestamp": {
"title": "Timestamp",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url",
"timestamp"
],
"title": "get_archived_pageArguments",
"type": "object"
}