# Base DEX Pool Intelligence API

> Base DEX Pool Intelligence API is a paid API for AI agents from pool-alert-detector--biohackflowinfo.replit.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches newly created Base DEX liquidity pools enriched with token metadata, liquidity estimates, risk flags, and trade/watch/skip signals

## Facts

- Endpoint: GET https://pool-alert-detector--biohackflowinfo.replit.app/api/pool-intelligence
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-dex-pool-intelligence-api-4a88747b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G-TQxiM5hUApjk88iTYP5

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-dex-pool-intelligence-api-4a88747b
```

Example prompt: Show me the top 10 newly created pools on Base from the last 30 minutes across all DEXes, with at least $5000 in liquidity and a minimum score of 60, and tell me which ones are worth trading versus skipping.

## When to prefer this

Choose this endpoint when you need real-time intelligence on newly created Base chain DEX pools with built-in risk scoring and trade signals, rather than raw on-chain data that requires your own analysis. Ideal for DeFi trading bots, sniping agents, or portfolio monitors that need actionable buy/watch/skip recommendations without building a custom scoring engine.

## Known failure modes

- No pools found matching the filters — returns empty list
- Invalid DEX name returns error or empty result
- minLiquidityUsd or minScore too high filters out all results
- minutesAgo set too low yields no recent pools
- Rate limiting or payment failure returns 402 or 429 error
- Replit hosting may cause cold-start latency on first call

## How this service works

Actionable Base DEX intelligence — newly created pools enriched with token metadata, stablecoin-based liquidity estimates, transparent heuristic risk flags, and a trade/watch/skip signal.

## Output

Returns a list of newly created Base DEX liquidity pools, each enriched with token metadata (names, symbols, addresses), stablecoin-based liquidity estimates in USD, heuristic risk flags (e.g. honeypot suspicion, low liquidity, unknown tokens), an overall score, and a recommended action signal (trade, watch, or skip).

## 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",
     "required": [],
     "properties": {
      "dex": {
       "type": "string"
      },
      "limit": {
       "type": "integer"
      },
      "minScore": {
       "type": "integer"
      },
      "minutesAgo": {
       "type": "integer"
      },
      "minLiquidityUsd": {
       "type": "number"
      }
     }
    }
   },
   "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-dex-pool-intelligence-api-4a88747b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pool-alert-detector--biohackflowinfo.replit.app](https://www.zero.xyz/host/pool-alert-detector--biohackflowinfo.replit.app/llms.txt)
