← Docs

Stablecoin Feed API v3.1

Real-time peg monitoring, risk flags, and MiCA compliance data for 40+ stablecoins.

Endpoints

GET/api/v1/feeds/stablecoin

Returns live stablecoin data with enterprise meta wrapper.

curl Example

curl -H "X-API-Key: YOUR_KEY" \
  https://feedoracle.io/api/v1/feeds/stablecoin

Example Response

{
  "meta": {
    "product": "stablecoin",
    "feed": "STABLECOIN_RESERVES",
    "version": "3.0.0",
    "updated_at": "2026-01-17T13:41:03.033Z",
    "data_hash": "a1b2c3d4e5f6...",
    "sources": [{"name": "defillama", "type": "http"}],
    "rate_limit": {"tier": "standard", "limit_per_day": 1000}
  },
  "data": [
    {
      "symbol": "USDT",
      "name": "Tether",
      "price": 0.999638,
      "peg_dev_pct": 0.0362,
      "peg_status": "tight",
      "mcap_usd": 186593475373,
      "chains": 106,
      "issuer": "Tether",
      "mica_status": "no",
      "genius_status": "pending",
      "reserve_model": "fiat-backed",
      "score": 100,
      "risk_flags": ["mica_risk", "us_reg_pending"]
    }
  ]
}

Field Reference

FieldTypeDescription
peg_statusenumtight, moderate, stressed (below peg), yield-bearing, premium (above peg)
peg_dev_pctfloatAbsolute deviation from $1.00 peg in percent
risk_flagsarray["depeg_risk", "mica_risk", "us_reg_pending"]
mica_statusstringyes / no / pending / defi
reserve_modelstringfiat-backed, crypto-backed, hybrid, unknown (best-effort)
scoreint0-100 health score

Score Methodology

Meta Endpoint

GET/api/v1/feeds/stablecoin/meta (no auth)

Returns methodology, thresholds, and disclaimer.

Disclaimer: FeedOracle provides data infrastructure only. This is NOT investment advice, compliance certification, or regulatory attestation.

📋 View Test Cases

← Back to Docs