# DeepBlueBase Token Risk Analyzer

> DeepBlueBase 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).

Performs AI-powered risk scoring and analysis of a Base chain token by address using Claude Opus

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/token/:address
- 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-6df69fe8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eqzmeQ3Gb1iTFhUAyfA9l

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-6df69fe8
```

Example prompt: Can you run an AI risk analysis on the Base chain token at address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 and tell me the risk score, risk level, and liquidity in USD?

## When to prefer this

Use this endpoint when you need AI-generated narrative risk scoring and liquidity assessment for a specific Base chain token by contract address, especially when a Claude Opus-backed qualitative risk label alongside a numeric score is needed — not just raw on-chain price data.

## Known failure modes

- Invalid or non-existent token address returns an error
- Token not found on Base chain DEX pools
- Upstream Claude Opus API unavailable causing analysis failure
- Payment not completed via x402 protocol resulting in 402 response
- Rate limiting or timeout on LLM inference

## How this service works

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

## Output

Returns a risk label (e.g. low/medium/high), a numeric risk score, and the token's liquidity in USD — generated by Claude Opus based on on-chain data from Base DEX pools.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-deepbluebase-xyz-6df69fe8/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)
