# DeFi Shield Wallet Full Report

> DeFi Shield Wallet Full Report is a paid API for AI agents from defi-shield-hazel.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns a comprehensive one-call wallet report including risk score, trust score, activity summary, security flags, and wallet profile for an EVM address

## Facts

- Endpoint: POST https://defi-shield-hazel.vercel.app/api/wallet/full-report
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defi-shield-hazel-vercel-app-12293755
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kZVbku9ZJDAOusBUpTVeH

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 defi-shield-hazel-vercel-app-12293755 -d '<json body>'
```

Example prompt: Before I send funds to 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045, can you pull a full DeFi Shield report on that wallet — I want the risk level, trust score, any security flags, and a recommendation on whether to interact with it?

## When to prefer this

Use this endpoint when you need a complete, consolidated wallet risk and activity report in a single API call rather than orchestrating multiple separate calls to risk scoring, GoPlus security, and on-chain activity APIs. Ideal for agent workflows that need to make a go/no-go decision on interacting with a wallet address quickly and cost-effectively. Prefer this over building your own multi-step analysis when you want risk score, trust score, security flags, and activity summary in one response at $0.08 versus ~$0.32 for equivalent self-service orchestration.

## Known failure modes

- Invalid or malformed wallet address returns error
- Unknown or unresolvable address may return empty profile with null fields
- Network timeout if on-chain data provider is slow
- Rate limiting or payment failure if x402 payment not processed
- Wallet with no on-chain history returns zeroed profile with inactive classification

## Output

Returns a structured JSON report containing: risk_level (e.g. critical/low/medium/high), risk_score (0-100), trust_score (0-100), risk_factors array, recommendation (e.g. DO_NOT_INTERACT), wallet profile (balance, age, transaction counts, token counts, classification), activity breakdown (inbound/outbound/contract calls/failed txs), security flags from GoPlus, and a savings comparison showing cost efficiency vs. self-service analysis.

## Example request

```json
{
 "input": {
  "body": {
   "address": "0x1234567890123456789012345678901234567890"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "properties": {
      "address": {
       "type": "string",
       "description": "0x wallet address to analyze"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/defi-shield-hazel-vercel-app-12293755/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defi-shield-hazel.vercel.app](https://www.zero.xyz/host/defi-shield-hazel.vercel.app/llms.txt)
