# DeFi Shield Bridge Risk Assessment

> DeFi Shield Bridge Risk Assessment is a paid API for AI agents from defi-shield-hazel.vercel.app, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Assesses trust and risk for blockchain bridge protocols in DeFi, providing risk scores and safety signals for cross-chain bridges

## Facts

- Endpoint: POST https://defi-shield-hazel.vercel.app/api/protocol/bridge-risk
- Price: $0.5/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-c926ddbc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OqV8IC6JNTp6-fIT31kMo

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

Example prompt: What's the trust and risk score for the Stargate bridge protocol before I move 10,000 USDC from Ethereum to Arbitrum — I need to know how safe it is and what the main risk factors are.

## When to prefer this

Use this endpoint when an agent or user needs to evaluate the safety of a specific DeFi bridge before executing a cross-chain transfer. Prefer this over generic protocol risk tools when the focus is specifically on bridge mechanics, cross-chain trust, and bridge-specific risk vectors such as validator centralization, audit history, and exploit history.

## Known failure modes

- Unknown or unsupported bridge protocol returns an error or low-confidence result
- Invalid or unrecognized contract address returns a validation error
- Network or chain not supported returns a scope error
- Service unavailable returns 5xx with no risk data
- Insufficient data for assessment returns partial or low-confidence score

## How this service works

Bridge trust and risk assessment

## Output

Returns a trust and risk assessment for the specified bridge protocol, including an overall risk score, safety signals, identified risk factors (e.g. smart contract vulnerabilities, centralization, audit status), and a recommendation on whether to proceed with a cross-chain transfer.

## 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": {
      "bridge_name": {
       "type": "string",
       "description": "Bridge or protocol name (e.g. wormhole, stargate)"
      }
     }
    },
    "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-c926ddbc/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)
