# Base Pool Scout with Safety Checks

> Base Pool Scout with Safety Checks is a paid API for AI agents from agenttoll-pi.vercel.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 floor and returns a bundled safety verdict (honeypot simulation, taxes, owner powers) for each in a single call

## Facts

- Endpoint: GET https://agenttoll-pi.vercel.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/base-pool-scout-with-safety-checks-c526161a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rZaxKHMFezLNt2eMMBQvi

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-pool-scout-with-safety-checks-c526161a
```

Example prompt: Scout me the top 3 new Base pools created today that have at least $20000 in liquidity, and tell me which ones passed the honeypot and tax safety checks.

## When to prefer this

Choose this endpoint when you need both pool discovery and safety screening in a single call rather than chaining a separate radar endpoint with individual safety checks. It is ideal for agents performing daily DeFi opportunity scans on Base, automated trading pipelines that need a liquidity floor filter, or risk-aware dashboards that must surface only vetted new pools without extra round-trips.

## Known failure modes

- No new pools found above the specified liquidity floor — returns empty list or minimum-pool warning
- minLiquidity set too high resulting in zero qualifying pools
- pools parameter out of range (must be 1–4) causes validation error
- Upstream DEX or on-chain data provider unavailable causing partial or failed response
- Safety check simulation fails for a specific token, returning null verdict for that pool

## How this service works

The radar and the safety check in one call: today's new Base pools above your liquidity floor, each with a safety verdict already attached (honeypot simulation, taxes, owner powers). One call instead of N+1

## Output

A list of newly created Base DEX pools (up to 4) each enriched with: pool address, token names, liquidity in USD, creation timestamp, honeypot simulation result, buy tax percentage, sell tax percentage, and owner/admin power flags — all in one response.

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

## More

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