# DeepBlue Base Token Risk Analyzer

> DeepBlue Base Token Risk Analyzer is a paid API for AI agents from api.deepbluebase.xyz, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns AI-powered risk score, diagnosis, and DEX pool data for any ERC-20 token on Base chain

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/token/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepbluebase-xyz-2f95814e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pz8le4rCGzR_C_7eLSQkY

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 api-deepbluebase-xyz-2f95814e
```

Example prompt: Can you run a full AI risk analysis on the Base chain token at address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 — I want the risk score, liquidity data, and the Claude diagnosis before I decide whether to enter a position?

## When to prefer this

Use this endpoint when you need a combined AI narrative + quantitative risk assessment for a specific Base chain token in a single call. It is superior to raw DEX data APIs when you need an interpretable diagnosis (e.g., 'is this a good entry?') rather than just numbers. Prefer this over generic token screeners when the user wants Base-specific pool depth, buy/sell flow analysis, and an LLM-generated trading rationale in one response.

## Known failure modes

- Token address not found on Base DEX — no pool data available
- Invalid contract address format returns error
- Token has no liquidity pools on Base — analysis cannot be completed
- Payment not received or x402 payment header missing — 402 response
- Claude Opus API timeout causing delayed or missing diagnosis field
- Newly listed token with insufficient 24h data — partial pool_data returned

## How this service works

AI-powered token analysis and risk scoring on Base chain using Claude Opus

## Output

Returns a JSON object with: chain (always 'base'), numeric risk score (0-1, lower = safer), token address, symbol, a detailed AI-written diagnosis (buy/sell/hold rationale, liquidity health, momentum), and a pool_data object containing DEX name, price in USD, 24h volume, 24h buys and sells, liquidity in USD, market cap, FDV, price change 24h, and pool address.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {},
  "queryParams": {}
 }
}
```

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "risk": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "liquidity_usd": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "chain",
  "score",
  "token",
  "symbol",
  "diagnosis",
  "pool_data"
 ],
 "properties": {
  "chain": {
   "type": "string"
  },
  "score": {
   "type": "number"
  },
  "token": {
   "type": "string"
  },
  "symbol": {
   "type": "string"
  },
  "diagnosis": {
   "type": "string"
  },
  "pool_data": {
   "type": "object",
   "required": [
    "dex",
    "name",
    "symbol",
    "fdv_usd",
    "price_usd",
    "pool_address",
    "raw_buys_24h",
    "raw_sells_24h",
    "token_address",
    "market_cap_usd",
    "raw_volume_24h",
    "raw_liquidity_usd",
    "raw_price_change_24h"
   ],
   "properties": {
    "dex": {
     "type": "string"
    },
    "name": {
     "type": "string"
    },
    "symbol": {
     "type": "string"
    },
    "fdv_usd": {
     "type": "number"
    },
    "price_usd": {
     "type": "string"
    },
    "pool_address": {
     "type": "string"
    },
    "raw_buys_24h": {
     "type": "number"
    },
    "raw_sells_24h": {
     "type": "number"
    },
    "token_address": {
     "type": "string"
    },
    "market_cap_usd": {
     "type": "number"
    },
    "raw_volume_24h": {
     "type": "number"
    },
    "raw_liquidity_usd": {
     "type": "number"
    },
    "raw_price_change_24h": {
     "type": "number"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-deepbluebase-xyz-2f95814e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.deepbluebase.xyz](https://www.zero.xyz/host/api.deepbluebase.xyz/llms.txt)
