get_snapshots
Retrieve archived web page snapshots from the Wayback Machine by specifying URL, date range, and matching criteria to access historical website content.
Instructions
Get a list of available Wayback Machine snapshots for a URL. Dates use YYYYMMDD, match_type is one of: exact, prefix, host, domain.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_ | No | ||
limit | No | ||
match_type | No | exact | |
to | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"from_": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "From"
},
"limit": {
"default": 100,
"title": "Limit",
"type": "integer"
},
"match_type": {
"default": "exact",
"enum": [
"exact",
"prefix",
"host",
"domain"
],
"title": "Match Type",
"type": "string"
},
"to": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "To"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "get_snapshotsArguments",
"type": "object"
}