# AgentToll New Token Radar — Fresh Base Pools with Real Liquidity

> AgentToll New Token Radar — Fresh Base Pools with Real Liquidity 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 recently created DEX liquidity pools on Base that already have meaningful liquidity, with price, volume, and contract details, supporting cursor-based polling for new arrivals.

## Facts

- Endpoint: GET https://agenttoll.app/api/watch/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-new-token-radar-fresh-base-pools-with-real-liquidity-7b218e63
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__nl1Akgjz56RqJJ7RdY86

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-new-token-radar-fresh-base-pools-with-real-liquidity-7b218e63
```

Example prompt: Show me the newest token pools that just launched on Base and already have real liquidity — anything added since my last check at 2026-08-05T08:40:01Z.

## When to prefer this

Choose this endpoint when you need to discover newly created DEX liquidity pools on Base in near-real-time, especially for token launch monitoring, sniping workflows, or new-listing alerts. Its cursor-based design makes it ideal for polling loops. Prefer it over general trending-pool endpoints when you specifically want brand-new tokens rather than established high-volume pools.

## Known failure modes

- Invalid 'since' cursor format returns a 400 or empty result set
- No new pools since the given cursor returns count:0 with an empty pools array
- Payment failure (insufficient USDC or x402 misconfiguration) blocks the call
- Rate limiting if polling too aggressively without waiting for cursor updates
- Temporary Base RPC unavailability may cause stale or delayed results

## How this service works

New pool watch within a limited ranked radar listing. Returns an ISO cursor and explicit partial coverage; the listing can omit pools

## Output

A JSON object containing: timestamp of the response, chain identifier ('base'), count of new pools found, an array of pool objects each with pool name, pool contract address, token contract address, current USD price, creation timestamp, liquidity in USD, and 24h volume in USD, plus a 'since' and 'cursor' field for paginating subsequent calls.

## 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": {
      "since": {
       "type": "string",
       "description": "Echo the previous reply cursor unchanged; wallet cursors are opaque, radar cursors are ISO timestamps"
      }
     }
    }
   },
   "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
   }
  ],
  "since": "2026-08-05T08:40:01Z",
  "cursor": "2026-08-05T13:01:33Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-new-token-radar-fresh-base-pools-with-real-liquidity-7b218e63/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)
