# Stablecoin Peg Monitor

> Stablecoin Peg Monitor is a paid API for AI agents from stablecoin-peg.hergertsynthora.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns real-time peg deviation of major stablecoins (USDT, USDC, DAI, FRAX, etc.) vs $1.00 with a depeg risk flag for pre-trade safety checks.

## Facts

- Endpoint: POST https://stablecoin-peg.hergertsynthora.com/service
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablecoin-peg-monitor-d3512b08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5KpCYgdHkQwx3p3gqMch4

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 stablecoin-peg-monitor-d3512b08 -d '<json body>'
```

Example prompt: Before I send this $50,000 USDT payment, check the current peg deviation for USDT and USDC and let me know if either has a depeg risk flag.

## When to prefer this

Use this endpoint when an agent needs a fast, lightweight pre-trade safety check on stablecoin peg integrity before executing a payment, DeFi swap, or treasury operation. Prefer over general crypto price feeds when the specific need is depeg risk detection and the $1 reference anchor matters.

## Known failure modes

- Invalid or unrecognized stablecoin IDs return an error or empty result
- Upstream data feed failure — no charge applied per terms
- Network timeout or service unavailability
- Missing required 'ids' field in request body causes validation error

## How this service works

Real-time peg deviation for USDT/USDC/DAI/FRAX and more vs $1.00, with depeg risk flag. Pre-trade safety for treasury and payment agents. Free source. $0.01 USDC via x402 on Base. SYNTHORA.

## Output

Returns the current price of each requested stablecoin relative to $1.00, the magnitude of peg deviation, and a boolean depeg risk flag indicating whether the coin is considered unsafe to use for payments or treasury operations.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "stablecoin-peg",
  "result": {
   "dai": {
    "price_usd": 0.999672,
    "peg_status": "normal"
   },
   "tether": {
    "price_usd": 0.999258,
    "peg_status": "normal"
   },
   "usd-coin": {
    "price_usd": 0.999775,
    "peg_status": "normal"
   }
  },
  "provenance": {
   "url": "https://api.coingecko.com/api/v3/simple/price",
   "source": "SYNTHORA Stablecoin Peg Monitor"
  }
 }
}
```

## More

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