get_archiveresults
Retrieve archived web content results by applying filters like ID, URL, tags, status, or search terms to find specific snapshots in your ArchiveBox collection.
Instructions
List all ArchiveResult entries matching these filters.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Filter by ID | |
| search | No | Search across snapshot url, title, tags, extractor, output, id | |
| snapshot_id | No | Filter by snapshot ID | |
| snapshot_url | No | Filter by snapshot URL | |
| snapshot_tag | No | Filter by snapshot tag | |
| status | No | Filter by status | |
| output | No | Filter by output | |
| extractor | No | Filter by extractor | |
| cmd | No | Filter by command | |
| pwd | No | Filter by working directory | |
| cmd_version | No | Filter by command version | |
| created_at | No | Filter by exact creation date (ISO 8601) | |
| created_at__gte | No | Filter by creation date >= (ISO 8601) | |
| created_at__lt | No | Filter by creation date < (ISO 8601) | |
| limit | No | Number of results to return | |
| offset | No | Offset for pagination | |
| page | No | Page number for pagination | |
| api_key_param | No | API key for QueryParamTokenAuth |
Input Schema (JSON Schema)
{
"properties": {
"api_key_param": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "API key for QueryParamTokenAuth"
},
"cmd": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by command"
},
"cmd_version": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by command version"
},
"created_at": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by exact creation date (ISO 8601)"
},
"created_at__gte": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by creation date >= (ISO 8601)"
},
"created_at__lt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by creation date < (ISO 8601)"
},
"extractor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by extractor"
},
"id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by ID"
},
"limit": {
"default": 10,
"description": "Number of results to return",
"type": "integer"
},
"offset": {
"default": 0,
"description": "Offset for pagination",
"type": "integer"
},
"output": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by output"
},
"page": {
"default": 0,
"description": "Page number for pagination",
"type": "integer"
},
"pwd": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by working directory"
},
"search": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Search across snapshot url, title, tags, extractor, output, id"
},
"snapshot_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by snapshot ID"
},
"snapshot_tag": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by snapshot tag"
},
"snapshot_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by snapshot URL"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by status"
}
},
"type": "object"
}