# AgentToll Base Pool Scout

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

Fetches the newest Base DEX pools above a liquidity threshold and returns each with an embedded safety report (honeypot simulation, taxes, owner powers) in a single API call.

## Facts

- Endpoint: GET https://agenttoll.app/api/base/scout
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-base-pool-scout-70dcb56e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fCaIXS066L_vQVlQz7AhA

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-base-pool-scout-70dcb56e
```

Example prompt: Scout the 3 newest Base DEX pools with at least $20,000 in liquidity and tell me which ones are safe — flag any honeypots or suspicious owner privileges.

## When to prefer this

Choose this endpoint when you need both new pool discovery AND safety screening in a single call on Base, rather than calling a separate pool radar endpoint followed by N individual token safety checks. It's ideal for automated DeFi agents that need to surface actionable, pre-screened new pools without extra round trips. Prefer it over generic DEX screeners when you specifically want Base chain pools with embedded risk analysis.

## Known failure modes

- No new pools found above the specified liquidity floor — returns empty list or zero results
- Pool count parameter out of range (must be 1–4) — returns validation error
- Liquidity floor set extremely high — may return no qualifying pools
- Network or RPC issues with Base chain data — may return stale or partial results
- Honeypot simulation inconclusive for very new contracts — safety verdict may be pending or uncertain

## How this service works

New token scan with a safety verdict attached: today's new Base pools above your liquidity floor, each already checked for honeypot, taxes and owner powers. One call instead of N+1

## Output

A list of newly created Base DEX pools (up to 4) filtered to meet the specified liquidity floor, each annotated with: honeypot simulation result, buy/sell tax rates, owner privilege flags (e.g. can mint, can pause), and liquidity amount — all in one response without requiring separate safety API 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": {
      "pools": {
       "type": "integer",
       "maximum": 4,
       "minimum": 1,
       "description": "Optional. How many pools to check, default 3"
      },
      "minLiquidity": {
       "type": "number",
       "minimum": 0,
       "description": "Optional. Liquidity floor in USD, default 15000"
      }
     }
    }
   },
   "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-06T10:00:00.000Z",
  "chain": "base",
  "pools": [
   {
    "name": "SAAS / WETH 1%",
    "pool": "0x1c3a...9d2e",
    "token": "0x74bb95da6692c34ee9755ac87ea10366653dbc77",
    "safety": {
     "failed": [
      "liquidity"
     ],
     "verdict": "high-risk",
     "warnings": [
      "creator-stake"
     ],
     "unchecked": []
    },
    "priceUsd": 0.0021,
    "createdAt": "2026-08-06T09:12:44Z",
    "liquidityUsd": 445120.5,
    "volume24hUsd": 88410.2
   }
  ],
  "source": "geckoterminal-new-pools",
  "summary": {
   "clear": 0,
   "found": 3,
   "caution": 2,
   "checked": 3,
   "highRisk": 1,
   "unchecked": 0,
   "insufficientData": 0
  },
  "disclaimer": "Automated checks against public data, not investment advice.",
  "minLiquidityUsd": 25000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-base-pool-scout-70dcb56e/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)
