# DeFi Shield Governance Alert Monitor

> DeFi Shield Governance Alert Monitor 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-14).

Monitors DeFi protocol governance activity from Snapshot and emits TVL health alerts when notable governance events are detected

## Facts

- Endpoint: POST https://defi-shield-hazel.vercel.app/api/monitor/governance-alert
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defi-shield-hazel-vercel-app-def2a45c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-JHnP32Huev9OibAo4Tnr

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

Example prompt: Monitor Uniswap's governance activity on Snapshot and send me a TVL health alert if there are any active or recent proposals that could signal protocol risk.

## When to prefer this

Use this endpoint when you need to combine governance activity monitoring (from Snapshot) with TVL health signals in a single call. Ideal for agents that need to flag protocol risk from governance events, or for dashboards tracking DeFi protocol health holistically rather than governance or TVL in isolation.

## Known failure modes

- Protocol or Snapshot space not found — returns 404 or empty result
- Snapshot API unavailable — upstream timeout or error
- Invalid protocol identifier — malformed or unrecognized protocol name
- TVL data unavailable for the protocol — DeFi data source unreachable
- Rate limit exceeded — too many calls in a short window

## Output

Returns governance activity data pulled from Snapshot for the specified protocol, including active/recent proposals, participation metrics, and a TVL health alert indicating whether governance signals pose a risk to the protocol's total value locked.

## 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": {
      "protocol_name": {
       "type": "string",
       "description": "Protocol name to monitor governance (e.g. aave, uniswap)"
      }
     }
    },
    "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-def2a45c/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)
