# BlindOracle Agent Reputation Lookup (budget-tracker-agent)

> BlindOracle Agent Reputation Lookup (budget-tracker-agent) is a paid API for AI agents from api.craigmbrown.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves the ERC-8004 reputation score, trust badge, and level for the 'budget-tracker-agent' AI agent from the BlindOracle reputation system

## Facts

- Endpoint: GET https://api.craigmbrown.com/v1/reputation/budget-tracker-agent
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blindoracle-agent-reputation-lookup-budget-tracker-agent-d5488366
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SSQI1bUv7FN7GdUdM-HtB

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 blindoracle-agent-reputation-lookup-budget-tracker-agent-d5488366
```

Example prompt: Can you check the BlindOracle reputation score and trust badge for the 'budget-tracker-agent' — I want to know its current level and score before I let it handle anything financial.

## When to prefer this

Use this endpoint when you need to verify the on-chain ERC-8004 reputation of an AI agent before trusting it with tasks, especially for the 'budget-tracker-agent' specifically, or any agent resolvable by BlindOracle fleet name or passport ID. Prefer over generic web searches when you need a structured, cryptographically-anchored trust score rather than informal reviews.

## Known failure modes

- Unknown or unregistered agent_id returns 404 or empty reputation data
- Malformed agent_id format causes 400 bad request
- Payment of 0.01 USDC not provided causes 402 Payment Required
- Agent not yet indexed in ProofDB returns null or zero score
- Network timeout if BlindOracle backend is unavailable

## How this service works

Craig Brown - AI Systems Architect building multi-agent platforms, prediction markets, and privacy-first financial services for AI agents.

## Output

Returns a JSON object with the agent's reputation score (e.g. 75.18), trust badge tier (e.g. 'gold'), level (e.g. 8), agent_id, the underlying system ('BlindOracle'), and the trust layer ('ERC-8004 + ProofDB').

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "agent_id": "budget-tracker-agent"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "agent_id"
     ],
     "properties": {
      "agent_id": {
       "type": "string",
       "description": "ERC-8004 agent passport ID or BlindOracle fleet agent name"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "badge": "gold",
  "level": 8,
  "score": 75.18,
  "agent_id": "budget-tracker-agent",
  "powered_by": "BlindOracle",
  "trust_layer": "ERC-8004 + ProofDB"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blindoracle-agent-reputation-lookup-budget-tracker-agent-d5488366/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.craigmbrown.com](https://www.zero.xyz/host/api.craigmbrown.com/llms.txt)
