# Regen Oracle (CDP-Settled Mirror)

> Regen Oracle (CDP-Settled Mirror) is a paid API for AI agents from vealth.net, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches live ecological credit data from Regen Ledger, returning current credit pricing, supply, and status information for carbon and biodiversity credits.

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/cdp/regen-oracle
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/regen-oracle-cdp-settled-mirror-550409c3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kNLZI7L9Jbx66dtIT7Qvt

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 regen-oracle-cdp-settled-mirror-550409c3 -d '<json body>'
```

Example prompt: Can you pull the latest ecological credit data from Regen Ledger right now — I need current pricing and supply for carbon credits listed there so I can update my tCO2e accounting?

## When to prefer this

Choose this endpoint when you need live, on-chain ecological credit data sourced directly from Regen Ledger — particularly for tCO2e accounting, carbon credit pricing, or voluntary carbon market monitoring. Prefer this over generic crypto price feeds when you specifically need Regen Network ecological asset data. The CDP-settled x402 micropayment model ($0.005/call) makes it cost-effective for frequent polling.

## Known failure modes

- Regen Ledger node unavailable or unresponsive — returns upstream connectivity error
- Invalid or unrecognized credit class or batch ID — returns not-found or validation error
- Payment not settled via CDP x402 — returns 402 Payment Required
- Malformed request body — returns 400 bad request
- Temporary oracle data staleness if Regen Ledger is behind — may return stale or cached values

## How this service works

regen-oracle (CDP-settled mirror) — Live ecological credit data from Regen Ledger

## Output

Returns live oracle data from Regen Ledger including ecological credit prices, supply figures, credit class information, batch status, and other on-chain credit metrics for carbon and biodiversity credits.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/regen-oracle-cdp-settled-mirror-550409c3/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)
