# ADH DeFi Stablecoins Intelligence Layer

> ADH DeFi Stablecoins Intelligence Layer is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns real-time stablecoin market data including prices, circulating supply, peg type, backing mechanism, and chain distribution across the tracked stablecoin universe, sourced from DeFiLlama and normalized with entity resolution.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/defi-stablecoins
- 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/adh-defi-stablecoins-intelligence-layer-8ce28d03
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U53CPiswSnllVOxxXS-oS

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 adh-defi-stablecoins-intelligence-layer-8ce28d03
```

Example prompt: Pull the latest stablecoin intelligence from ADH — I want to see current prices, circulating supply, peg types, and chain distribution for the tracked universe so I can assess peg stability across the DeFi market.

## When to prefer this

Choose this endpoint when you need a pre-normalized, agent-ready stablecoin dataset aggregated from DeFiLlama without needing to call DeFiLlama directly or handle entity resolution yourself. It is especially useful when building AI agents that need stablecoin context injected into their reasoning (macro regime analysis, crypto due diligence, peg monitoring) and want provenance metadata alongside the data. Prefer it over raw DeFiLlama calls when you want time-synchronized, sourced intelligence rather than raw API output.

## Known failure modes

- Upstream DeFiLlama API unavailability causing stale or missing data
- x402 payment failure if USDC balance is insufficient or wallet not configured
- Response may include duplicate chain entries per token (observed in example schema)
- Data freshness lag if collection pipeline is delayed
- Empty or partial dataset if fewer than expected stablecoins are tracked

## How this service works

ADH 金融情报层：把 239 个原始数据源洗成带实体解析、时间同步、溯源与派生结论的情报（宏观regime / 加密尽调 / 事件窗口），免费注入你的 AI 上下文。Agent 走 x402 结算，人类订阅（PayPal）即将上线。

## Output

A JSON object containing: an array of stablecoin records (each with name, symbol, price, chains, peg_type, peg_mechanism, circulating_usd), total tracked count, universe size, total circulating USD across all stablecoins, the underlying data source (DeFiLlama), data type label, and ISO 8601 collection timestamp. The response is pre-normalized with entity resolution and provenance metadata applied by the ADH intelligence layer.

## 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",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "data": [
    {
     "name": "Tether",
     "price": 0.9993812245787965,
     "chains": [
      "Tron",
      "Tron"
     ],
     "symbol": "USDT",
     "peg_type": "peggedUSD",
     "peg_mechanism": "fiat-backed",
     "circulating_usd": 183101905220.39
    },
    {
     "name": "Tether",
     "price": 0.9993812245787965,
     "chains": [
      "Tron",
      "Tron"
     ],
     "symbol": "USDT",
     "peg_type": "peggedUSD",
     "peg_mechanism": "fiat-backed",
     "circulating_usd": 183101905220.39
    }
   ],
   "tracked": 60,
   "universe_size": 414,
   "total_circulating_usd": 305871792355.72
  },
  "source": "defillama",
  "data_type": "区块链",
  "collected_at": "2026-08-09T18:40:01Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-defi-stablecoins-intelligence-layer-8ce28d03/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
