# DeFi Shield Agent Wallet Trust Verifier

> DeFi Shield Agent Wallet Trust Verifier is a paid API for AI agents from defi-shield-hazel.vercel.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-16).

Verifies an agent wallet address for trustworthiness, returning a detailed trust assessment suitable for agent-to-agent interactions

## Facts

- Endpoint: POST https://defi-shield-hazel.vercel.app/api/trust/agent-verify
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defi-shield-hazel-vercel-app-671838b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cy0yTiW_bnsz6luC-vSuX

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-671838b9 -d '<json body>'
```

Example prompt: Can you do a full trust verification on agent wallet 0x4e9ce36e442e55ecd9025b9a6e0d88485d628a67 before I allow it to interact with my DeFi positions — I need to know if it's trustworthy?

## When to prefer this

Choose this endpoint over the quick trust score endpoint when you need a deeper, more comprehensive verification of an agent wallet — particularly in agent-to-agent scenarios where another autonomous agent is requesting to interact with your wallet, funds, or DeFi positions. Prefer this when the stakes are high enough to warrant the $0.25 cost over a cheaper surface-level check.

## Known failure modes

- Invalid or malformed wallet address returns 400 error
- Wallet address not found or no on-chain history returns low-confidence result
- Payment not included or insufficient USDC balance returns 402 Payment Required
- Network timeout or upstream data unavailability returns 503
- Rate limiting returns 429 Too Many Requests

## Output

A detailed trust verification result for the submitted agent wallet address, including trustworthiness assessment, risk flags, reputation signals, and a confidence-level verdict on whether the agent wallet is safe to interact with.

## Example request

```json
{
 "input": {
  "body": {
   "address": "0x4e9ce36e442e55ecd9025b9a6e0d88485d628a67"
  },
  "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": "Agent wallet address to verify (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-671838b9/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)
