# AgentToll Base Radar History Snapshot

> AgentToll Base Radar History Snapshot is a paid API for AI agents from agenttoll.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns a pinned, immutable radar snapshot of new Base token pools for a specific date, anchored to a git revision

## Facts

- Endpoint: GET https://agenttoll.app/api/base/radar/history
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-base-radar-history-snapshot-ab373062
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M-b6VNPl9fb0A1JJAFWHy

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agenttoll-base-radar-history-snapshot-ab373062
```

Example prompt: Can you pull the AgentToll radar history snapshot for Base from August 10th, 2026 — I want to see which new token pools were detected that day?

## When to prefer this

Use this endpoint when you need a historical, immutable record of the Base new token radar for a specific past date — particularly when auditability or reproducibility matters (e.g. backtesting, auditing, compliance). Prefer over live radar endpoints when you need a point-in-time snapshot rather than current data. The git-pinned revision makes this suitable for verifiable historical analysis.

## Known failure modes

- Date before history start (2026-08-06) returns no data or error
- Invalid date format returns a validation error
- Date in the future returns no snapshot (not yet captured)
- Network or payment failure results in 402 or connection error
- Malformed query parameter pattern causes rejection

## How this service works

Published radar snapshot pinned to an immutable git revision. The payment receipt proves payment, not snapshot content or capture time. ?date=YYYY-MM-DD, default latest

## Output

An immutable radar snapshot object representing new Base token pool data for the requested date, pinned to a specific git revision for auditability. The snapshot contains pool listings detected on that day, with the content fixed at the git revision at time of capture. Payment receipt proves payment only, not snapshot content or capture time.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "date": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
       "description": "Optional. Snapshot day, default latest. History begins 2026-08-06"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-base-radar-history-snapshot-ab373062/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.app](https://www.zero.xyz/host/agenttoll.app/llms.txt)
