get_snapshots
Retrieve a list of archived snapshots for a specific URL from the Wayback Machine. Specify optional filters like date range, match type, and result limit to customize your search.
Instructions
Get a list of available snapshots for a URL from the Wayback Machine
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Start date in YYYYMMDD format (optional) | |
limit | No | Maximum number of snapshots to return (default: 100) | |
match_type | No | Type of URL matching to use (default: exact) | |
to | No | End date in YYYYMMDD format (optional) | |
url | Yes | URL to check for snapshots |
Input Schema (JSON Schema)
{
"properties": {
"from": {
"description": "Start date in YYYYMMDD format (optional)",
"type": "string"
},
"limit": {
"description": "Maximum number of snapshots to return (default: 100)",
"type": "number"
},
"match_type": {
"description": "Type of URL matching to use (default: exact)",
"enum": [
"exact",
"prefix",
"host",
"domain"
],
"type": "string"
},
"to": {
"description": "End date in YYYYMMDD format (optional)",
"type": "string"
},
"url": {
"description": "URL to check for snapshots",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}