# Agent Health Monitor - Protection Agent (Unified Wallet Triage)

> Agent Health Monitor - Protection Agent (Unified Wallet Triage) is a paid API for AI agents from agenthealthmonitor.xyz, paid per call via x402, $25/call, status unknown (last checked 2026-09-15).

Autonomously triages an Ethereum wallet's risk, runs health check, gas optimization, and retry bot services, then returns a unified prioritized action report.

## Facts

- Endpoint: GET https://agenthealthmonitor.xyz/agent/protect/[address]
- Price: $25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-health-monitor-protection-agent-unified-wallet-triage-3503e809
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IhLhXUWcshUbyDfGMDH6X

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 agent-health-monitor-protection-agent-unified-wallet-triage-3503e809
```

Example prompt: Can you run a full protection triage on my wallet 0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae — I want to see the health score, risk level, any failed transactions I can retry, and a ranked list of actions by potential value recovered?

## When to prefer this

Use this endpoint when you want a single, comprehensive triage of a wallet rather than calling individual health, gas, or retry endpoints separately. It is ideal when you need a prioritized action plan ranked by potential value recovered and want to minimize round-trips. Prefer this over sibling endpoints when you don't know in advance which specific issue (gas, failed txs, health) is most pressing.

## Known failure modes

- Invalid or malformed Ethereum address returns a 400 error
- Address not found on-chain or has no transaction history returns minimal/empty report
- Payment of $25 USDC not provided or rejected results in 402 Payment Required
- Upstream blockchain RPC or data provider outage causes 503 or timeout
- Rate limiting if the same address is queried too frequently

## How this service works

Protection Agent: Autonomous orchestrator that triages wallet risk and runs the appropriate combination of health check, gas optimization, and retry bot services. Returns a unified report with prioritized actions ranked by potential value recovered.

## Output

A unified JSON report containing: overall health score (0-100), risk level (e.g. high/medium/low), total issues found, number of retry-ready failed transactions, estimated retry cost in USD, total potential savings in USD, list of services run (health_check, gas_optimizer, retry_bot), and a prioritized array of recommended actions each with description and potential USD value.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "address"
 ],
 "properties": {
  "address": {
   "type": "string",
   "title": "Address",
   "examples": [
    "0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae"
   ],
   "description": "Ethereum wallet address (0x-prefixed, 40 hex chars)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "report": {
   "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
   "summary": {
    "total_issues_found": 15,
    "estimated_retry_cost_usd": 2.4,
    "retry_transactions_ready": 8,
    "total_potential_savings_usd": 156
   },
   "risk_level": "high",
   "analyzed_at": "2026-02-18T12:00:00Z",
   "health_score": 58,
   "services_run": [
    "health_check",
    "gas_optimizer",
    "retry_bot"
   ],
   "recommended_actions": [
    {
     "action": "Execute retry transactions",
     "priority": 1,
     "description": "8 failed transactions can be retried with optimized gas",
     "potential_value_usd": 85
    }
   ]
  },
  "status": "ok"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-health-monitor-protection-agent-unified-wallet-triage-3503e809/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenthealthmonitor.xyz](https://www.zero.xyz/host/agenthealthmonitor.xyz/llms.txt)
