# DeepBlue Base Token Risk Scorer

> DeepBlue Base Token Risk Scorer 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-16).

AI-powered token analysis and risk scoring for Base chain tokens using Claude Opus, returning a risk label, numeric score, and liquidity data

## Facts

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

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-4096be50
```

Example prompt: Can you run a DeepBlue AI risk analysis on the Base chain token at address 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed — I want to know the risk score, risk label, and how much liquidity it has?

## When to prefer this

Choose this endpoint when you need AI-powered qualitative and quantitative risk scoring specifically for Base chain tokens, especially when you want Claude Opus intelligence layered on top of on-chain liquidity data rather than raw price feeds alone. Prefer over generic price endpoints when risk classification matters.

## Known failure modes

- Invalid or non-existent token address returns error or empty result
- Token not found on Base chain DEX pools
- Claude Opus API timeout causing delayed or failed analysis
- Payment not fulfilled (x402 payment required before response)
- Rate limiting if called too frequently

## How this service works

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

## Output

Returns a JSON object with a risk label (e.g. 'high', 'medium', 'low'), a numeric risk score, and the token's liquidity in USD — all generated by Claude Opus analysis of on-chain Base chain data.

## 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-4096be50/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)
