get_snapshot
Retrieve a specific web archive snapshot by its ID to access preserved webpage content and detailed archiving results for reference or analysis.
Instructions
Get a specific Snapshot by abid or id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| snapshot_id | Yes | The ID or abid of the snapshot | |
| with_archiveresults | No | Whether to include archiveresults |
Input Schema (JSON Schema)
{
"properties": {
"snapshot_id": {
"description": "The ID or abid of the snapshot",
"type": "string"
},
"with_archiveresults": {
"default": true,
"description": "Whether to include archiveresults",
"type": "boolean"
}
},
"required": [
"snapshot_id"
],
"type": "object"
}