# Vaultfire Smart Contract Registry

> Vaultfire Smart Contract Registry is a paid API for AI agents from theloopbreaker.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns the full registry of 134 verified smart contracts deployed across Base, Avalanche, Arbitrum, and Polygon, including contract addresses and deployment metadata.

## Facts

- Endpoint: GET https://theloopbreaker.com/api/x402/trust/contracts
- Price: $0.05/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-8f489496
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oy3VI1qMiEWPYm2UQkpIz

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-8f489496
```

Example prompt: Can you pull up the full Vaultfire smart contract registry and show me all 134 verified contract addresses across Base, Avalanche, Arbitrum, and Polygon?

## When to prefer this

Use this endpoint when you need a comprehensive, verified list of all Vaultfire protocol contract addresses across multiple mainnets in a single call. Prefer this over querying individual chain explorers or sibling endpoints that return per-contract data, especially when bootstrapping an integration or auditing the full protocol deployment.

## Known failure modes

- Payment failure: x402 payment header missing or USDC balance insufficient — returns 402 Payment Required
- Registry unavailable: upstream on-chain data source unreachable — returns 503
- Invalid request format: malformed input object — returns 400 with schema validation error

## How this service works

Full contract registry — 127 verified smart contracts across 4 mainnet chains (Base, Avalanche, Arbitrum, Polygon) with addresses and deployment info.

## Output

A structured list of 134 verified smart contracts with their names, deployment addresses, target chains (Base, Avalanche, Arbitrum, Polygon), and deployment metadata such as block number or timestamp.

## 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": {
  "chains": {
   "type": "number",
   "description": "Number of chains"
  },
  "contracts": {
   "type": "object",
   "description": "Contracts grouped by chain"
  },
  "totalContracts": {
   "type": "number",
   "description": "Total verified smart contracts"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/theloopbreaker-com-8f489496/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)
