# agenttoll.app Base Token Radar

> agenttoll.app Base Token Radar is a paid API for AI agents from agenttoll.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns a ranked list of freshly launched Base network liquidity pools that already have meaningful real liquidity, acting as a new token radar

## Facts

- Endpoint: GET https://agenttoll.app/api/base/radar
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-app-base-token-radar-406ebc9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WFAZBa6WlKyC2VumLlOQJ

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-app-base-token-radar-406ebc9d
```

Example prompt: Show me the top 20 brand-new Base pools that have at least $25,000 in liquidity — I want to catch early token launches that already have real trading depth.

## When to prefer this

Use this endpoint when you need to discover newly launched tokens on Base that already have real liquidity backing, as opposed to trending or established pools. It is distinct from a trending pools endpoint because it focuses on freshness and early-stage discovery rather than sustained volume or momentum. Prefer this over general market data endpoints when the goal is to surface alpha on token launches before they become widely known.

## Known failure modes

- No pools found matching the minLiquidity threshold — returns empty list
- limit out of range (must be 1–30) — validation error
- minLiquidity below 0 — validation error
- Upstream Base chain or DEX data temporarily unavailable — may return stale or error response
- Payment failure via x402 protocol — 402 response before data is returned

## How this service works

New token radar on Base with a liquidity floor: pools created in the last 24 hours that already hold real liquidity; ?minLiquidity sets the spam floor in USD, default 10000. Each pool carries its token address, so anything interesting can go straight to /api/base/safety

## Output

A list of newly created Base network DEX liquidity pools (up to 30) that meet the minimum liquidity threshold, including pool identifiers, token pairs, liquidity values in USD, and other pool metadata useful for evaluating early-stage token launches.

## 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": {
      "limit": {
       "type": "integer",
       "maximum": 30,
       "minimum": 1,
       "description": "Optional. How many pools, default 15"
      },
      "minLiquidity": {
       "type": "number",
       "minimum": 0,
       "description": "Optional. Liquidity floor in USD, default 10000"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "at": "2026-08-05T13:31:58.678Z",
  "chain": "base",
  "count": 1,
  "pools": [
   {
    "name": "BASED / ETH 1%",
    "pool": "0x2acb...cac0",
    "token": "0xb6bb786056c690e41b20a587573fd77aade2eb07",
    "priceUsd": 0.0000156,
    "createdAt": "2026-08-05T13:01:33Z",
    "liquidityUsd": 14246.1,
    "volume24hUsd": 19071.46
   }
  ],
  "source": "geckoterminal-new-pools",
  "minLiquidityUsd": 10000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-app-base-token-radar-406ebc9d/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)
