# DeFi Shield Wallet Exposure Analyzer

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

Analyzes current token exposure and DeFi positions for a given wallet address to assess risk concentration and portfolio breakdown

## Facts

- Endpoint: POST https://defi-shield-hazel.vercel.app/api/wallet/exposure
- Price: $0.5/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-14f19755
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nG4K9f-uUD5l5AzHt3_kd

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-14f19755 -d '<json body>'
```

Example prompt: Can you analyze the token exposure and current DeFi positions for my wallet 0xABC...123 and tell me where my risk is concentrated?

## When to prefer this

Use this endpoint when you need a comprehensive snapshot of a wallet's current token exposure and active DeFi positions, particularly for risk assessment or portfolio auditing. Prefer this over a simple balance check when you need concentration analysis across multiple protocols and tokens.

## Known failure modes

- Invalid or malformed wallet address returns 400 error
- Unsupported chain or network returns 422 or empty results
- Wallet with no DeFi activity returns empty positions array
- Rate limiting or service unavailability returns 429 or 503
- Payment not processed correctly returns 402 payment required

## Output

Returns a breakdown of the wallet's current token holdings and DeFi positions, including exposure percentages per token, position values, and concentration risk indicators across protocols.

## Example request

```json
{
 "input": {
  "body": {
   "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f42bE1"
  },
  "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": "Wallet address for exposure analysis (0x + 40 hex chars)"
      }
     }
    },
    "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-14f19755/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)
