# Agent Health Monitor — Policy Route Health Check

> Agent Health Monitor — Policy Route Health Check is a paid API for AI agents from agenthealthmonitor.xyz, paid per call via x402, $1/call, status unknown (last checked 2026-09-13).

Returns a 2D health diagnostic report for an autonomous agent wallet, including a health score, behavioral pattern analysis, and recommendations.

## Facts

- Endpoint: GET https://agenthealthmonitor.xyz/ahs/route/policy
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-health-monitor-policy-route-health-check-1d1ad2e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yCZ_p3q91OSU6UWA-MyKg

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-policy-route-health-check-1d1ad2e3
```

Example prompt: Can you run an Agent Health Monitor policy-route diagnostic on wallet 0xd8da6bf26964af9d7eed9e03e53415d37aa96045 and tell me the health score, grade, any detected patterns like stale strategy or repeated failures, and what I should do to fix it?

## When to prefer this

Use this endpoint when you need a comprehensive 2D health report covering both wallet hygiene and behavioral patterns for a specific agent wallet on Base. Prefer this over single-dimension checks when you want a graded, actionable summary with pattern detection (e.g. stale strategy, repeated failures) and a confidence rating.

## Known failure modes

- Invalid or missing wallet address returns an error response
- Non-Base-compatible address may not be analyzable
- Insufficient transaction history for the wallet may yield low-confidence results
- Payment of 1 USDC not received results in 402 response
- Rate limiting if too many calls made rapidly

## How this service works

Trust and health verification for autonomous agents. 14 diagnostic endpoints. Pay-per-call.

## Output

Returns a JSON report containing: overall agent health score (0-100), grade (e.g. 'Needs Attention'), confidence level (HIGH/MEDIUM/LOW), dimensional scores for wallet_hygiene and behavioural_patterns with their weights and contributing factors, detected patterns with severity, actionable recommendations, model version (AHS-v1), and a recommended next scan date.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "report": {
   "mode": "2D",
   "grade": "Needs Attention",
   "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
   "confidence": "HIGH",
   "dimensions": [
    {
     "score": 85,
     "weight": 0.3,
     "dimension": "wallet_hygiene",
     "contributing_factors": [
      "Wallet hygiene is healthy"
     ]
    },
    {
     "score": 63,
     "weight": 0.7,
     "dimension": "behavioural_patterns",
     "contributing_factors": [
      "Repeated failures: 6 consecutive"
     ]
    }
   ],
   "model_version": "AHS-v1",
   "recommendations": [
    "Investigate repeated failures",
    "Enable dynamic gas pricing"
   ],
   "patterns_detected": [
    {
     "name": "Stale Strategy",
     "detected": true,
     "severity": "warning",
     "description": "Agent is repeatedly failing on the same contract interaction without adapting."
    }
   ],
   "agent_health_score": 72,
   "next_scan_recommended": "7 days"
  },
  "status": "ok"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-health-monitor-policy-route-health-check-1d1ad2e3/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)
