Radar sample scorecard: first sightings across the latest N published snapshots, grouped b
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
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-08
updated
Provider
agenttoll.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xe55359021a6a22d8385b827405991c56075f56f8",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"days": 7
},
"type": "http"
},
"output": {
"example": {
"at": "2026-08-12T10:00:00.000Z",
"chain": "base",
"cohorts": {
"caution": {
"count": 0,
"liquidityGone": 0,
"medianChangePct": null,
"priced": 0,
"unavailable": 0
},
"clear": {
"count": 0,
"liquidityGone": 0,
"medianChangePct": null,
"priced": 0,
"unavailable": 0
},
"high-risk": {
"count": 1,
"liquidityGone": 1,
"medianChangePct": null,
"priced": 0,
"unavailable": 0
},
"insufficient-data": {
"count": 0,
"liquidityGone": 0,
"medianChangePct": null,
"priced": 0,
"unavailable": 0
},
"unassessed": {
"count": 0,
"liquidityGone": 0,
"medianChangePct": null,
"priced": 0,
"unavailable": 0
}
},
"coverage": {
"complete": false,
"missingSnapshotDates": [],
"note": "Published radar samples with variable holding periods; missing quotes are not losses.",
"poolsObserved": 1,
"poolsWithoutSafety": 0,
"poolsWithoutToken": 0,
"priceBatchesFailed": 0,
"requestedDays": 7,
"snapshotsListed": 7,
"snapshotsLoaded": 7,
"tokensObserved": 1,
"tokensPriced": 0,
"windowBasis": "latest-published-snapshots",
"windowFirstSnapshot": "2026-08-06",
"windowLastSnapshot": "2026-08-12"
},
"disclaimer": "A track record, not investment advice.",
"methodology": "First sightings in published samples; current deepest observed pool. liquidityGone is null when unavailable; true only for observed liquidity below $100. Medians use available quotes and varying holding periods.",
"provenance": {
"commit": "https://github.com/tevfikefeaydin/agenttoll/commit/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"index": "https://raw.githubusercontent.com/tevfikefeaydin/agenttoll/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/data/scout/index.json",
"integrity": "Git revision pins the published bytes. A payment transaction does not authenticate a snapshot hash or its capture time.",
"revision": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
},
"tokens": [
{
"flaggedOn": "2026-08-06",
"liquidityGone": true,
"liquidityNowUsd": 3,
"liquidityThenUsd": 68437,
"name": "openhuman / WETH",
"outcome": "low-observed-liquidity",
"priceChangePct": null,
"token": "0x74bb...dc77",
"verdictThen": "high-risk"
}
],
"trackRecord": {
"daysCovered": 7,
"firstSnapshot": "2026-08-06",
"lastSnapshot": "2026-08-12"
},
"windowDays": 7
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"days": {
"description": "Optional. Latest published snapshots to compare, default 7; elapsed holding periods vary",
"maximum": 30,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agenttoll.app/api/base/scorecard" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agenttoll.app/api/base/scorecard");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://agenttoll.app/api/base/scorecard")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4012.json, and this resource appears in /discovery/resources and /discovery/search.