# Vealth Regen Reputation Scorer

> Vealth Regen Reputation Scorer is a paid API for AI agents from vealth.net, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Computes a multi-factor reputation/quality score for a Regen Ledger ecological credit class or project, breaking it down by age, adoption, liquidity, methodology depth, and retirement activity.

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/regen-reputation
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-regen-reputation-scorer-ca8ceaf3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6bkopARoq9qivcFA3s6BP

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 vealth-regen-reputation-scorer-ca8ceaf3 -d '<json body>'
```

Example prompt: What's the reputation score for Regen credit class C01? I want to see the full breakdown — age, adoption, liquidity, methodology depth, and retirement activity.

## When to prefer this

Use this endpoint when you need a structured, multi-dimensional reputation score for a specific Regen Ledger ecological credit class or project — particularly when you need sub-scores across age, adoption, liquidity, methodology depth, and retirement activity rather than raw on-chain data. Prefer this over the raw regen-oracle endpoint when you need an aggregated, comparable quality signal.

## Known failure modes

- Unknown target_id returns an error or empty result
- Invalid target_type value causes a validation error
- Regen Ledger data unavailable leads to a service timeout or 503
- Missing required fields (target_id or target_type) results in a 400 bad request
- Payment not included or insufficient returns a 402 Payment Required

## How this service works

Find useful work. Build a life from it. Every job shows the place, the task, the proof, and the pay before you begin. Start today and grow toward mastery.

## Output

A JSON object containing an overall integer reputation score (e.g. 612) plus a breakdown of five sub-scores: age, adoption, liquidity, methodology_depth, and retirement_activity, along with the target_id, target_type, spec_version, and scorer_version used.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "target_id": {
   "type": "string"
  },
  "target_type": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 612,
  "breakdown": {
   "age": 90,
   "adoption": 82,
   "liquidity": 180,
   "methodology_depth": 120,
   "retirement_activity": 140
  },
  "target_id": "C01",
  "target_type": "class",
  "spec_version": "M010-v0",
  "scorer_version": "1.1.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-regen-reputation-scorer-ca8ceaf3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vealth.net](https://www.zero.xyz/host/vealth.net/llms.txt)
