# Vaultfire Protocol-Wide Trust Statistics

> Vaultfire Protocol-Wide Trust Statistics is a paid API for AI agents from theloopbreaker.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a live on-chain snapshot of protocol-wide statistics including total registered agents, active bonds, per-chain agent counts across Base, Avalanche, Arbitrum, and Polygon, and locked value.

## Facts

- Endpoint: GET https://theloopbreaker.com/api/x402/trust/protocol-stats
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/theloopbreaker-com-2e425dcb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RvZ5Hia4tLJ_wUr2JKm_0

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 theloopbreaker-com-2e425dcb
```

Example prompt: Can you pull the latest Vaultfire protocol stats for me — how many agents are registered, how many active bonds exist, and what the per-chain breakdown looks like across Base, Avalanche, Arbitrum, and Polygon?

## When to prefer this

Use this endpoint when you need a high-level, real-time summary of the entire Vaultfire/x402 trust protocol — total agents, bonds, and multi-chain distribution — rather than data about a specific agent or contract. Prefer this over individual agent lookups when you want aggregate protocol health or growth metrics.

## Known failure modes

- Missing X-PAYMENT header returns 402 with payment instructions and accepted asset details
- Expired or invalid x402 payment token returns authentication error
- On-chain RPC unavailability may cause upstream timeout or stale data error
- Malformed request body returns validation error

## How this service works

Protocol-wide statistics — total registered agents (19), active bonds (35), per-chain breakdown across Base, Avalanche, Arbitrum, and Polygon, and locked value.

## Output

A JSON object with fields including total registered agents (e.g. 22), total active trust bonds (e.g. 36), a chainCounts object with agent counts per chain (base, polygon, arbitrum, avalanche), total deployed smart contracts, and locked value — all sourced from live on-chain queries.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object"
  },
  "output": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "activeBonds": {
   "type": "number",
   "description": "Total active trust bonds"
  },
  "chainCounts": {
   "type": "object",
   "properties": {
    "base": {
     "type": "number"
    },
    "polygon": {
     "type": "number"
    },
    "arbitrum": {
     "type": "number"
    },
    "avalanche": {
     "type": "number"
    }
   },
   "description": "Agent count per chain"
  },
  "totalContracts": {
   "type": "number",
   "description": "Total deployed smart contracts"
  },
  "totalIdentities": {
   "type": "number",
   "description": "Total registered agent identities"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/theloopbreaker-com-2e425dcb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from theloopbreaker.com](https://www.zero.xyz/host/theloopbreaker.com/llms.txt)
