# Aerodrome DEX Pool Risk Assessor

> Aerodrome DEX Pool Risk Assessor is a paid API for AI agents from aero.lonestaroracle.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Assesses risk of an Aerodrome DEX liquidity pool by checking both constituent tokens for honeypot traps and rug pull vectors

## Facts

- Endpoint: GET https://aero.lonestaroracle.xyz/pool
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aerodrome-dex-pool-risk-assessor-d2bfed38
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ntE43cfc_0NvA6E1mDjHj

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 aerodrome-dex-pool-risk-assessor-d2bfed38
```

Example prompt: Before I add liquidity to this Aerodrome pool, can you run a full honeypot and rug pull risk check on it — the pool address is 0x6cDcb1C4A4D1C3C6d054b27AC5B77e89eAFb971d on Base?

## When to prefer this

Use this endpoint when you need Aerodrome-specific DEX pool safety checks on Base chain, particularly when you want simultaneous honeypot and rug vector analysis for both tokens in a pool rather than analyzing tokens individually. Prefer this over generic token scanners when the user is specifically evaluating an Aerodrome liquidity pool position.

## Known failure modes

- Invalid or non-existent pool address returns an error
- Pool not found on Aerodrome protocol
- RPC or on-chain data fetch failure for token analysis
- Payment not received or insufficient USDC balance (x402 payment required)
- Token contract not verified or unreadable on-chain

## How this service works

Aerodrome DEX pool risk assessment — checks both tokens for honeypots and rug vectors

## Output

Returns a risk assessment for the specified Aerodrome pool, including honeypot detection results and rug pull vulnerability indicators for both tokens in the pool, helping users make informed decisions before providing liquidity or trading.

## Request schema (JSON Schema)

```json
{
 "name": "AeroCheck — Pool Risk Scanner",
 "tags": [
  "aerodrome",
  "defi",
  "pool",
  "risk",
  "base",
  "liquidity",
  "honeypot"
 ],
 "type": "object",
 "version": "1.0.0",
 "category": "data",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "pool": {
       "type": "string",
       "title": "Pool"
      },
      "token": {
       "type": "string",
       "title": "Token"
      },
      "address": {
       "type": "string",
       "title": "Address"
      },
      "contract": {
       "type": "string",
       "title": "Contract"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "pair": "WETH/USDC",
     "pool": "0xcdac0d6c6c59727a65f871236188350531885c43",
     "chain": "base",
     "token0": {
      "symbol": "WETH",
      "risk_label": "clean",
      "risk_score": 0
     },
     "token1": {
      "symbol": "USDC",
      "risk_label": "critical",
      "risk_score": 10,
      "trust_list": true
     },
     "verdict": "safe",
     "pool_type": "volatile",
     "ai_narrative": "Both tokens in this pool are established assets..."
    }
   }
  }
 },
 "description": "Risk scanner for any Aerodrome (or Uniswap v2-compatible) pool on Base. Reads token0 and token1 from the pool contract, runs both through ContractCheck and TokenScope, and returns per-token risk scores, honeypot status, flags, and a Claude AI verdict on whether the pool is safe to provide liquidity to. Verdict: safe / caution / avoid."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aerodrome-dex-pool-risk-assessor-d2bfed38/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aero.lonestaroracle.xyz](https://www.zero.xyz/host/aero.lonestaroracle.xyz/llms.txt)
