cli_list
List and filter ArchiveBox snapshots by status, date range, or patterns to retrieve archived content metadata in JSON, HTML, or CSV formats.
Instructions
Execute archivebox list command.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filter_patterns | No | List of filter patterns | |
| filter_type | No | Filter type | substring |
| status | No | Filter by status | indexed |
| after | No | Filter snapshots after timestamp | |
| before | No | Filter snapshots before timestamp | |
| sort | No | Sort field | bookmarked_at |
| as_json | No | Output as JSON | |
| as_html | No | Output as HTML | |
| as_csv | No | Output as CSV or fields to include | timestamp,url |
| with_headers | No | Include headers in output | |
| extra_data | No | Additional parameters as a dictionary |
Input Schema (JSON Schema)
{
"properties": {
"after": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": 0,
"description": "Filter snapshots after timestamp"
},
"as_csv": {
"anyOf": [
{
"type": "string"
},
{
"type": "boolean"
}
],
"default": "timestamp,url",
"description": "Output as CSV or fields to include"
},
"as_html": {
"default": false,
"description": "Output as HTML",
"type": "boolean"
},
"as_json": {
"default": true,
"description": "Output as JSON",
"type": "boolean"
},
"before": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": 999999999999999,
"description": "Filter snapshots before timestamp"
},
"extra_data": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"description": "Additional parameters as a dictionary"
},
"filter_patterns": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "List of filter patterns"
},
"filter_type": {
"default": "substring",
"description": "Filter type",
"type": "string"
},
"sort": {
"default": "bookmarked_at",
"description": "Sort field",
"type": "string"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "indexed",
"description": "Filter by status"
},
"with_headers": {
"default": false,
"description": "Include headers in output",
"type": "boolean"
}
},
"type": "object"
}