# Base Radar+Safety Historical Snapshot

> Base Radar+Safety Historical Snapshot is a paid API for AI agents from agenttoll-pi.vercel.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns a past day's committed radar and safety snapshot for new Base token pools, including the Base transaction that paid for it, queryable by date.

## Facts

- Endpoint: GET https://agenttoll-pi.vercel.app/api/base/radar/history
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-radar-safety-historical-snapshot-ce548241
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gSAVqLxffz0Yow2-z1h6o

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 base-radar-safety-historical-snapshot-ce548241
```

Example prompt: Pull up the Base radar and safety snapshot from 2026-08-10 — I want to see which new pools were flagged that day and the on-chain Base transaction that committed the record.

## When to prefer this

Choose this endpoint when you need a historically committed, on-chain-anchored record of which Base tokens the radar surfaced on a specific past date, along with their safety verdicts. It is the right choice for auditing, back-testing, or verifying immutable historical radar snapshots rather than querying live current data.

## Known failure modes

- Date before history start (2026-08-06) returns empty or error
- Invalid date format (not YYYY-MM-DD) returns 400 validation error
- Date in the future returns no data or error
- Network or Vercel availability issues return 5xx
- Payment of 0.002 USDC not provided returns 402

## How this service works

A past day's radar+safety snapshot, exactly as committed to the public git history the day it was taken - with the Base tx that paid for it. ?date=YYYY-MM-DD, default latest

## Output

Returns the radar and safety snapshot exactly as committed to public git history for the requested date, including new Base pools that appeared that day, their safety check results (honeypot simulation, buy/sell tax, contract verification), and the Base blockchain transaction that paid for and anchors the snapshot.

## 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/base-radar-safety-historical-snapshot-ce548241/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll-pi.vercel.app](https://www.zero.xyz/host/agenttoll-pi.vercel.app/llms.txt)
