# StablecoinPulse Depeg Tick

> StablecoinPulse Depeg Tick is a paid API for AI agents from stablecoinpulse.theaslangroupllc.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns live price, $1 deviation, 24h change, and a STABLE/WATCH/ALERT verdict for USDT, USDC, USDS, DAI, USDe, and USD1 in a single polling-optimized call.

## Facts

- Endpoint: GET https://stablecoinpulse.theaslangroupllc.com/api/depeg-tick
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablecoinpulse-depeg-tick-7a46af40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__I8RWwkV5BqIKmDLDYG4x

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 stablecoinpulse-depeg-tick-7a46af40
```

Example prompt: Check the current peg status of all the major stablecoins — USDT, USDC, DAI, USDe, USDS, and USD1 — and tell me if any of them are showing a WATCH or ALERT verdict right now.

## When to prefer this

Use this endpoint as the lightweight, low-cost polling heartbeat in a stablecoin monitoring loop when you need a multi-coin snapshot of peg health in one call. Prefer this over /api/depeg-watch when you want a broad sweep across all six major stablecoins rather than a deep single-coin analysis. Ideal for automated agents that need to check every cycle and escalate only when a non-STABLE verdict appears.

## Known failure modes

- CoinGecko upstream outage returns stale or empty price data
- Stale data beyond 60-second freshness window if upstream is delayed
- HTTP 402 if payment (x402, $0.01 USDC) is not included or fails
- Rate limiting if called faster than supported polling interval

## How this service works

Stablecoin peg tick — USDT, USDC, USDS, DAI, USDe, USD1 in ONE $0.01 call: live price, deviation from $1, 24h change, and a deterministic STABLE / WATCH / ALERT verdict per coin. Built for monitoring loops: call it every cycle, escalate to /api/depeg-watch for the single-coin deep read when a verdict is not STABLE. 60s freshness, cited to CoinGecko, no LLM in the path.

## Output

Returns for each of the six covered stablecoins: current USD price, deviation from $1, 24-hour price change, and a deterministic verdict of STABLE, WATCH, or ALERT. Data is sourced from CoinGecko with 60-second freshness. No LLM inference in the pipeline. Designed to be called in a tight monitoring loop, with escalation to /api/depeg-watch for any non-STABLE coin.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "coins": [
   {
    "symbol": "USDT",
    "verdict": "STABLE",
    "price_usd": 0.9996,
    "deviation_pct": -0.04,
    "change_24h_pct": 0.01
   }
  ],
  "deep_read": "https://stablecoinpulse.theaslangroupllc.com/api/depeg-watch?symbol=USDT ($0.15)",
  "market_verdict": "ALL_STABLE"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablecoinpulse-depeg-tick-7a46af40/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablecoinpulse.theaslangroupllc.com](https://www.zero.xyz/host/stablecoinpulse.theaslangroupllc.com/llms.txt)
