# Base Token New Pool Radar

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

Returns newly created liquidity pools on Base from the last 24 hours filtered by a minimum liquidity threshold to surface legitimate new tokens above a spam floor

## Facts

- Endpoint: GET https://agenttoll-pi.vercel.app/api/base/radar
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-token-new-pool-radar-f7b48b42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r2UeVXQ5tv_rqlbblQOSw

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-token-new-pool-radar-f7b48b42
```

Example prompt: Show me new token pools that launched on Base in the last 24 hours with at least $25,000 in liquidity — give me the top 10 and include their token addresses so I can check them for safety.

## When to prefer this

Use this endpoint when you need to discover brand-new token launches on Base that already have real liquidity backing — specifically when you want to filter out low-quality spam tokens before doing deeper analysis. Prefer this over general trending pool endpoints when recency (last 24 hours) matters and you want a fresh discovery feed rather than established tokens. It pairs naturally with the /api/base/safety endpoint to vet any interesting finds.

## Known failure modes

- No pools returned if no new pools meet the minLiquidity threshold in the time window
- Rate limiting or payment failure if x402 payment is not correctly handled
- minLiquidity values that are too high may return empty results during low-activity periods
- limit exceeding 30 will be rejected by schema validation
- Downstream DEX data provider outages may cause stale or missing pool data

## How this service works

New token radar for Base: 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 DEX liquidity pools from the past 24 hours, each including the pool address, token address, liquidity in USD, and relevant pool metadata. Results are filtered to exclude pools below the specified minLiquidity floor (default $10,000) to reduce spam. Returns up to `limit` pools (default 15, max 30). Token addresses in the response can be passed directly to the /api/base/safety endpoint for honeypot and tax checks.

## 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"
    }
   }
  }
 }
}
```

## More

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