# StablePulse - Stablecoin Peg Monitoring

> StablePulse - Stablecoin Peg Monitoring is a paid API for AI agents from api.aidress.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns peg deviation (current, 24h max, 7d max), composite stability score (0-10), and risk category (green/yellow/red) for top stablecoins across Base, Ethereum, and Solana.

## Facts

- Endpoint: GET https://api.aidress.ai/pay/agent_stable_lonestaroracle_xyz
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablepulse-stablecoin-peg-monitoring-28f8744d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rl1nz0g2JXzuujz9connC

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 stablepulse-stablecoin-peg-monitoring-28f8744d
```

Example prompt: Give me a StablePulse read on the top stablecoins right now — I want to see which ones are depegged or in the red/yellow risk zone across Base, Ethereum, and Solana before I move funds.

## When to prefer this

Choose StablePulse when you need a fast, opinionated, pre-computed stability snapshot across multiple stablecoins and chains — especially when you need the 24h/7d historical deviation context and a color-coded risk tier without building your own oracle aggregation. Prefer it over raw price feeds when the agent needs a ready-to-act risk classification rather than raw price ticks.

## Known failure modes

- Upstream oracle data unavailable — returns 503 or empty dataset
- Stale price data if oracle feeds lag — deviation values may not reflect real-time conditions
- Payment not processed (x402) — returns 402 Payment Required
- Network-specific data missing if a chain's feed is temporarily offline

## How this service works

Top stables ranked by mcap with peg deviation (now/24h/7d) + stability score + risk

## Output

A ranked list of top stablecoins (by market cap) each with: current peg deviation percentage, maximum peg deviation over 24h, maximum peg deviation over 7d, a composite stability score from 0-10, and a risk category label (green/yellow/red). Covers stablecoins deployed on Base, Ethereum, and Solana.

## Request schema (JSON Schema)

```json
{
 "name": "StablePulse - Stablecoin Peg Monitor (USDC, USDT & major stablecoin depeg risk)",
 "tags": [
  "stablecoin",
  "stablecoin-monitor",
  "peg",
  "peg-monitor",
  "peg-deviation",
  "depeg",
  "depeg-risk",
  "reserves",
  "stability",
  "monitor",
  "risk",
  "defi",
  "usdc",
  "usdt",
  "dai",
  "pyusd",
  "usde",
  "base"
 ],
 "type": "object",
 "version": "1.0.0",
 "category": "trading",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 },
 "description": "Monitor USDC, USDT and major stablecoin pegs. Real-time peg deviation (now / 24h max / 7d max) + composite 0-10 stability score + green/yellow/red depeg-risk category, plus a reserve & stability read, across the top stablecoins on Base, Ethereum and Solana. For agents, portfolio-risk tools, and DeFi services that need a fast, opinionated read on stablecoin safety."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablepulse-stablecoin-peg-monitoring-28f8744d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aidress.ai](https://www.zero.xyz/host/api.aidress.ai/llms.txt)
