# Vaultfire Agent Trust Profile Lookup

> Vaultfire Agent Trust Profile Lookup 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).

Look up an AI agent's on-chain trust profile including ERC-8004 registration status, bond count, trust score (0–95), VNS name, and explorer link across 4 chains.

## Facts

- Endpoint: GET https://theloopbreaker.com/api/x402/trust/agent-status
- 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-030dc67f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4lacswQGpU3qi1U8bCU1I

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-030dc67f
```

Example prompt: Can you look up the on-chain trust profile for AI agent 0x1234567890123456789012345678901234567890 on Base — I want to know their ERC-8004 registration status, bond count, trust score, and VNS name.

## When to prefer this

Use this endpoint when you need to verify or display the on-chain trust standing of an AI agent across ERC-8004-compatible chains, especially when you need bond count, a 0–95 trust score, VNS name resolution, or a block explorer link — all in a single call. Prefer this over building your own multi-chain contract reads.

## Known failure modes

- Missing or invalid agent address returns an error
- Unsupported chain identifier returns an error
- No payment header provided returns a 402 with payment instructions
- Agent address not found on specified chain returns zeroed/false values
- Network or RPC timeout on smart contract read returns a service error

## How this service works

Look up any AI agent's on-chain trust profile — ERC-8004 registration, bond count, trust score (0–95), VNS name, and explorer link. Queries real smart contracts across 4 chains.

## Output

Returns the agent's on-chain trust profile: whether they are ERC-8004 registered, their trust score (0–95), number of active bonds, VNS name (if any), the chain queried, and a block explorer link for verification.

## 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": {
  "chain": {
   "type": "string",
   "description": "Chain queried"
  },
  "address": {
   "type": "string",
   "description": "Agent wallet address"
  },
  "hasBond": {
   "type": "boolean",
   "description": "Whether agent has active bond"
  },
  "vnsName": {
   "type": "string",
   "description": "Vaultfire Name Service name"
  },
  "bondCount": {
   "type": "number",
   "description": "Number of active bonds"
  },
  "registered": {
   "type": "boolean",
   "description": "ERC-8004 registration status"
  },
  "trustScore": {
   "type": "number",
   "description": "Trust score 0–95"
  },
  "explorerUrl": {
   "type": "string",
   "description": "Block explorer link"
  },
  "identityType": {
   "type": "string",
   "description": "Identity type (agent/human)"
  }
 }
}
```

## More

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