# KeeperHub DeFi Risk Snapshot Workflow

> KeeperHub DeFi Risk Snapshot Workflow is a paid API for AI agents from app.keeperhub.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Runs a blockchain DeFi risk snapshot workflow for a given EVM wallet address, returning an execution ID for async result retrieval.

## Facts

- Endpoint: POST https://app.keeperhub.com/api/mcp/workflows/defi-risk-snapshot/call
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/keeperhub-defi-risk-snapshot-workflow-6ec7c7c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w9QhiqMqfLRtyvDVPzzGK

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 keeperhub-defi-risk-snapshot-workflow-6ec7c7c1 -d '<json body>'
```

Example prompt: Run a DeFi risk snapshot on wallet address 0x742d35Cc6634C0532925a3b8D4C9b7F1eA3B5678 and tell me the risk assessment results.

## When to prefer this

Use this endpoint when you need an automated, workflow-driven DeFi risk assessment for a specific EVM wallet address. Prefer this over manual on-chain queries when you want a structured, reproducible risk snapshot with async execution tracking. Best suited for agents that need to trigger risk audits and poll for results rather than requiring synchronous responses.

## Known failure modes

- Invalid or malformed EVM address returns validation error
- Payment of 0.01 USDC not provided or insufficient funds causes 402 Payment Required
- Workflow execution queue full may cause delayed or failed start
- Network or RPC issues with underlying blockchain data providers may cause execution failure
- Missing address parameter returns 400 Bad Request

## How this service works

Build powerful blockchain workflow automations with a visual, node-based editor. Built with Next.js and React Flow.

## Output

Returns a JSON object with a status field (e.g. 'running') and an executionId (e.g. 'exec_abc123') that can be used to poll for the completed risk analysis results of the given EVM wallet.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "description": "EVM wallet address to check (0x...)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "status": "running",
 "executionId": "exec_abc123"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/keeperhub-defi-risk-snapshot-workflow-6ec7c7c1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.keeperhub.com](https://www.zero.xyz/host/app.keeperhub.com/llms.txt)
