# Vibesprings Ethereum Address Risk Report

> Vibesprings Ethereum Address Risk Report is a paid API for AI agents from vibesprings.net, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Analyzes an Ethereum address on Base, Ethereum, or Sepolia to produce a risk score, behavioral tags, token balances, and profile flags

## Facts

- Endpoint: GET https://vibesprings.net/api/risk-report
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibesprings-ethereum-address-risk-report-03d84a3a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DFXzq3dE8NUkn2xTUO_x7

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 vibesprings-ethereum-address-risk-report-03d84a3a
```

Example prompt: Can you run a risk report on the Ethereum address 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Base — I want to know if it's high risk, what tokens it holds, and whether it looks like a whale or a scammer?

## When to prefer this

Use this endpoint when you need a quick, pay-per-use risk and profile assessment of a specific Ethereum-compatible address without setting up API keys or accounts. Ideal for agents that need to evaluate counterparty risk before a transaction, flag suspicious wallets, or enrich address data with behavioral tags and token holdings on Base, Ethereum mainnet, or Sepolia testnet.

## Known failure modes

- Missing or malformed address (not 0x-prefixed, not 42 chars) returns validation error
- Unsupported chain identifier returns error
- Address with no on-chain activity may return minimal data
- Payment failure via x402 returns 402 with payment requirements
- Network or RPC timeout may delay or fail response

## How this service works

Comprehensive on-chain risk report combining full risk scoring (6+ signals: known-risky address check, wallet age, contract bytecode analysis, proxy detection, selfdestruct patterns) with complete wallet profiling (token holdings, activity level, behavioral tags). Designed for compliance agents, counterparty vetting, and security-aware agentic workflows.

## Output

Returns a JSON object with: risk level (minimal/low/medium/high), numeric risk score, risk flags with severity labels, behavioral tags (e.g. stablecoin-holder, active-trader, whale), token balances with contract addresses, account profile (EOA vs contract, ETH balance, USD value, transaction count, activity level), and metadata including processing time and signals analyzed.

## 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": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Target chain: base, ethereum, or sepolia (default: base)"
      },
      "address": {
       "type": "string",
       "description": "Ethereum address to analyze (0x-prefixed, 42 chars)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risk": {
   "flags": [
    {
     "code": "ESTABLISHED",
     "label": "Established Account",
     "detail": "1247 outgoing transactions.",
     "severity": "info"
    }
   ],
   "level": "minimal",
   "score": 0,
   "recommendation": "Low risk — established address."
  },
  "chain": "base",
  "tokens": [
   {
    "name": "USD Coin",
    "symbol": "USDC",
    "balance": "1500.00",
    "contractAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
   }
  ],
  "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
  "profile": {
   "type": "eoa",
   "isProxy": false,
   "codeSize": 0,
   "balanceEth": "1.23",
   "balanceUsd": "$4,305.00",
   "isContract": false,
   "activityLevel": "whale",
   "transactionCount": 1247,
   "implementationAddress": null
  },
  "metadata": {
   "queriedAt": "2026-06-21T20:00:00.000Z",
   "processingTime": "290ms",
   "signalsAnalyzed": 6
  },
  "behavioralTags": [
   "stablecoin-holder",
   "active-trader",
   "whale"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibesprings-ethereum-address-risk-report-03d84a3a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibesprings.net](https://www.zero.xyz/host/vibesprings.net/llms.txt)
