# Base New Pool Risk Scorer

> Base New Pool Risk Scorer is a paid API for AI agents from base-agent-preflight.bytoken2023.workers.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns a risk score and flags for a newly created liquidity pool on Base by token contract address

## Facts

- Endpoint: GET https://base-agent-preflight.bytoken2023.workers.dev/v1/x402/base/new-pool-risk
- 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/base-new-pool-risk-scorer-adbe059e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BpAatn28xRls6CHOLENkt

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-new-pool-risk-scorer-adbe059e
```

Example prompt: Can you check the risk score for this new liquidity pool on Base — the token contract is 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed? I want to know if it's flagged as high risk before I interact with it.

## When to prefer this

Use this endpoint when you need a fast, structured risk score specifically for a newly created liquidity pool on the Base network (eip155:8453), given a token contract address. Prefer this over generic token scanners when the pool is freshly launched and you need Base-specific risk flags before executing a swap or providing liquidity.

## Known failure modes

- Invalid or malformed token address (not matching ^0x[a-fA-F0-9]{40}$) returns a validation error
- Token address not found on Base network returns empty or null assessment
- Pool does not exist yet for the token returns no pool data
- Payment not included or insufficient USDC results in 402 Payment Required
- Network timeout on Cloudflare Worker edge returns 503 or gateway error

## How this service works

Machine-payable service intelligence for discovering, verifying, and monitoring identity, risk, authorization, execution-preflight, and evidence APIs before autonomous agents spend.

## Output

A JSON object containing the network identifier (eip155:8453), product name (base-new-pool-risk), and an assessment object with risk_score (numeric), risk_level (e.g. 'low', 'medium', 'high'), and flags array listing any detected risk signals for the queried token's newest pool.

## 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": [
      "token"
     ],
     "properties": {
      "token": {
       "type": "string",
       "pattern": "^0x[a-fA-F0-9]{40}$",
       "description": "Base token address whose deepest pool should be checked."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "network": {
       "type": "string"
      },
      "product": {
       "type": "string"
      },
      "activity": {
       "type": "object"
      },
      "identity": {
       "type": "object"
      },
      "assessment": {
       "type": "object"
      },
      "provenance": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "network": "eip155:8453",
  "product": "base-new-pool-risk",
  "assessment": {
   "flags": [],
   "risk_level": "low",
   "risk_score": 0
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/base-new-pool-risk-scorer-adbe059e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from base-agent-preflight.bytoken2023.workers.dev](https://www.zero.xyz/host/base-agent-preflight.bytoken2023.workers.dev/llms.txt)
