# SuVerse Stablecoin Supply & Chain Distribution

> SuVerse Stablecoin Supply & Chain Distribution is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns current circulating supply, per-chain breakdown, peg deviation, and 30-day supply change for major stablecoins including USDT, USDC, DAI, FDUSD, PYUSD, TUSD, and Frax

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-stablecoin-supply
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-d50009e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6yiHIp7Xdkjd6hkpzJmH8

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 proxy-suverse-io-d50009e9 -d '<json body>'
```

Example prompt: Pull the current circulating supply and per-chain breakdown for USDT and USDC — I want to see if there's any peg deviation and how their supplies have shifted over the last 30 days.

## When to prefer this

Use this endpoint when you need authoritative, multi-chain stablecoin supply data in a single call — especially when tracking dollar liquidity migration across L1s and L2s, monitoring peg stability, or analyzing 30-day supply trends for USDT, USDC, DAI, FDUSD, PYUSD, TUSD, or Frax. Prefer this over generic on-chain RPC calls when you want pre-aggregated cross-chain summaries without building your own multi-chain indexer.

## Known failure modes

- Unsupported stablecoin ticker returns an error or empty result
- Chain distribution data may lag real-time due to indexing delays
- Peg deviation data unavailable for low-liquidity or newer stablecoins
- Rate limiting or payment failure if USDC payment is not properly attached
- Network timeout if upstream data aggregation is slow

## How this service works

Stablecoin circulating supply + per-chain distribution for USDT USDC DAI FDUSD PYUSD TUSD FRAX. Total supply, by-chain breakdown (Ethereum Tron BSC Solana Base Arbitrum), peg deviation, 30d supply change. AI agent dollar liquidity migration tracker, capital flow API.

## Output

Returns total circulating supply for each requested stablecoin, supply distributed by chain (Ethereum, Tron, BSC, Solana, Base, Arbitrum), any current peg deviation percentage, and 30-day supply change figures — enabling tracking of dollar liquidity migrations and on-chain capital flows.

## Example request

```json
{
 "stablecoins": [
  "USDT",
  "USDC"
 ],
 "include30DayChange": true,
 "includePegDeviation": true,
 "includeChainBreakdown": true
}
```

## 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",
      "PUT",
      "PATCH"
     ],
     "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/proxy-suverse-io-d50009e9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
