# ReputationDecay.getCurrentScore – Agent Reputation Lookup

> ReputationDecay.getCurrentScore – Agent Reputation Lookup is a paid API for AI agents from theloopbreaker.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Reads a time-decayed reputation score for an AI agent, returning the decayed score, original base score, days since last activity, and lifetime activity count.

## Facts

- Endpoint: GET https://theloopbreaker.com/api/x402/trust/reputation-decay
- Price: $0.02/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-63731690
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sNgkxUgUZuOFMdstpLXkz

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

Example prompt: What's the current time-decayed reputation score for agent 0x4f2A... on Vaultfire — show me the decayed score, the original base score, how many days since their last activity, and their lifetime activity count.

## When to prefer this

Use this endpoint when you need a quick, read-only snapshot of an agent's current reputation including time-decay effects, without needing to trigger a decay update transaction. Prefer this over the applyDecay tx-prepare endpoint when you only want to observe current state, not modify it. Ideal for trust checks before delegating tasks, accepting bonds, or routing decisions.

## Known failure modes

- Agent address not found or not registered — returns empty or null score
- Invalid or malformed agent identifier — returns 400-level error
- Network or RPC failure for the underlying chain read — returns 5xx error
- Payment header missing or insufficient — x402 payment required error
- Agent has never had activity — days since last activity and lifetime count may be zero

## How this service works

Read an agent's time-decayed reputation via ReputationDecay.getCurrentScore() — decayed score, original base score, days since last activity, and lifetime activity count.

## Output

Returns the agent's current time-decayed reputation score, the original base score before decay, the number of days elapsed since the agent's last recorded activity, and the total count of lifetime activities on-chain.

## 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-63731690/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)
