# Vealth Regen Class Momentum Scorer

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

Returns a momentum score and liquidity/retirement velocity metrics for a carbon credit regenerative asset class by class ID

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/regen-class-momentum
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-regen-class-momentum-scorer-6e4bf7bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__IYmgt5mzbAsMkwmVkPi_

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-class-momentum-scorer-6e4bf7bc -d '<json body>'
```

Example prompt: What's the current momentum score for carbon credit class C01 — is it trending up, and how does the retirement velocity and liquidity look right now?

## When to prefer this

Use this endpoint when you need a composite, pre-scored momentum signal for a specific regenerative carbon credit class that combines both liquidity depth and retirement velocity into a single labeled score. Prefer it over raw market data feeds when you want an opinionated, weighted signal ready for trading or portfolio decisions without building your own scorer.

## Known failure modes

- Unknown or invalid class_id returns an error or empty result
- Class with no recent trading activity may return null or zero liquidity values
- Network timeout if upstream carbon market data feed is unavailable
- Stale data if retirements registry is delayed — fetched_at timestamp will indicate freshness

## 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 the class ID, a momentum label (e.g. 'strong_up') and numeric score, liquidity details (active order count, total quantity, floor price in USD), retirement statistics for the last 24 hours (count and total tonnes), a retirement velocity z-score, the prior 6-day daily average, component weights used in scoring, and metadata including fetch timestamp and spec/scorer versions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "class_id": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "class_id": "C01",
  "momentum": {
   "label": "strong_up",
   "score": 1,
   "components": {
    "liquidity_baseline_weight": 0.3,
    "retirement_velocity_weight": 0.7
   }
  },
  "liquidity": {
   "active_orders": 6,
   "total_quantity": 124.5,
   "floor_price_usd": 12.4
  },
  "fetched_at": "2026-04-25T18:00:00.000Z",
  "retirements": {
   "last_24h": {
    "count": 3,
    "total_tonnes": 18
   },
   "velocity_z": 1,
   "prior_6d_daily_avg": 1.5
  },
  "spec_version": "RCM-v0",
  "scorer_version": "1.0.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-regen-class-momentum-scorer-6e4bf7bc/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)
