get_tag
Retrieve a specific tag by ID from ArchiveBox archives, with options to include associated snapshots for organized content management.
Instructions
Get a specific Tag by id or abid.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tag_id | Yes | The ID or abid of the tag | |
| with_snapshots | No | Whether to include snapshots |
Input Schema (JSON Schema)
{
"properties": {
"tag_id": {
"description": "The ID or abid of the tag",
"type": "string"
},
"with_snapshots": {
"default": true,
"description": "Whether to include snapshots",
"type": "boolean"
}
},
"required": [
"tag_id"
],
"type": "object"
}