# Realedger Stablecoin Depeg Monitor

> Realedger Stablecoin Depeg Monitor is a paid API for AI agents from api.realedger.xyz, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-13).

Returns current prices of tracked stablecoins versus the $1 peg and flags any coin deviating 0.5% or more from peg in real time.

## Facts

- Endpoint: GET https://api.realedger.xyz/v1/depeg
- 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/realedger-stablecoin-depeg-monitor-b055438e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FBYdRajnwJC-Le2dBmQfO

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 realedger-stablecoin-depeg-monitor-b055438e
```

Example prompt: Check Realedger right now and tell me if any stablecoins — USDC, USDT, DAI — have depegged by 0.5% or more from a dollar.

## When to prefer this

Choose this endpoint when you need a cheap, real-time, pollable signal for stablecoin depeg events with pre-computed flagging logic (0.5% threshold already applied), rather than fetching raw price feeds and computing deviations yourself. Ideal for automated monitoring loops, risk guards before DeFi operations, or alerting systems that need a simple flagged/not-flagged answer without heavy computation.

## Known failure modes

- Stablecoin not tracked — asset may not be in Realedger's monitored set, returns empty or missing asset entry
- Payment failure — x402 payment not accepted, returns 402 with payment details
- Stale data — price feed may lag during extreme market events
- Rate limiting — excessive polling may result in throttling or payment rejection

## How this service works

Weekly scoreboard grading tokenized RWA promises against verified on chain reality. Every number carries an evidence grade and a retrieval timestamp; the archive is append only.

## Output

Returns a JSON object with per-stablecoin current prices and a boolean 'flagged' field indicating whether the coin is 0.5% or more off its $1 peg, plus a top-level list of all currently flagged assets.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "realedger": {
   "assets": {
    "USDC": {
     "price": 1,
     "flagged": false
    }
   },
   "flagged": []
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/realedger-stablecoin-depeg-monitor-b055438e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.realedger.xyz](https://www.zero.xyz/host/api.realedger.xyz/llms.txt)
