# Vaultfire Agent Capability Credentials Lookup

> Vaultfire Agent Capability Credentials 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-15).

Reads an AI agent's on-chain capability credential profile live from the registry, returning total credentials, active credentials, and task proofs.

## Facts

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

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-cf3eb20e
```

Example prompt: Pull the on-chain capability credential profile for agent 0xABC123 from the Vaultfire registry — I want to see total credentials, how many are still active, and any task proofs they've earned.

## When to prefer this

Use this endpoint when you need a live, authoritative on-chain read of an AI agent's capability credentials from the Vaultfire registry. Prefer this over trust-score or bond endpoints when the specific question is about credentialed capabilities and task proofs rather than reputation scores or bond amounts.

## Known failure modes

- Agent address not found in registry — returns empty or null credential profile
- Invalid or malformed agent identifier input — likely returns a 400 or empty response
- On-chain RPC node unavailable — may return a 503 or timeout
- Payment header missing or invalid — returns 402 Payment Required
- Agent has no credentials yet — returns zeroed counts

## How this service works

Capability credentials profile for any AI agent — total credentials, active credentials, task proofs. Reads the on-chain credential registry live.

## Output

Returns a credential profile object for the specified AI agent read live from the on-chain Vaultfire credential registry, including: total credential count, number of currently active credentials, and associated task proofs.

## 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"
  }
 }
}
```

## More

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