# AgentToll Radar Scorecard

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

Returns a scorecard of first sightings of assets across recent published snapshots, grouped by original verdict and compared to current quotes, with liquidity and holding period context

## Facts

- Endpoint: GET https://agenttoll.app/api/base/scorecard
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-radar-scorecard-2faab848
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ofXTWsr3uiGkiEavR3-KD

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-radar-scorecard-2faab848
```

Example prompt: Pull up the radar scorecard for the last 14 days of snapshots — I want to see how first sightings compare to current prices, grouped by original verdict, and flag anything with liquidity under $100.

## When to prefer this

Use this endpoint when you want a retrospective performance scorecard of radar-flagged assets on Base, comparing original verdict calls to current market prices across a rolling window of recent snapshots. Prefer this over raw price or pool endpoints when the goal is evaluating prediction accuracy or tracking how spotted assets have evolved since first sighting.

## Known failure modes

- days parameter out of range (must be 1–30) returns a validation error
- no published snapshots available for the requested window returns empty or null groups
- assets with no current quote data return null for current price fields
- liquidity data unavailable for some assets may result in incomplete low-liquidity reporting

## How this service works

Radar sample scorecard: first sightings across the latest N published snapshots, grouped by original verdict and compared to current quotes. Missing outcomes stay null; observed liquidity below $100 is reported separately; holding periods vary

## Output

A structured scorecard grouping asset first sightings by their original verdict category, showing current quotes alongside the initial call, elapsed holding periods, and any assets with liquidity below $100 reported separately. Missing outcomes are returned as null.

## 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": {
      "days": {
       "type": "integer",
       "maximum": 30,
       "minimum": 1,
       "description": "Optional. Latest published snapshots to compare, default 7; elapsed holding periods vary"
      }
     }
    }
   },
   "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-radar-scorecard-2faab848/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)
