PricingSign In
API v1 - Live

API Documentation

Access real-time stablecoin market data, peg monitoring, and compliance scores via our REST API. Free tier includes 100 requests/day. Upgrade for higher limits.

Base URL
https://stablelens.com
GET/api/v1/stablecoins

List all tracked stablecoins with real-time market data, peg status, and compliance info.

Parameters

NameTypeDefaultDescription
limitnumber50Max results (1-200)
statusstringFilter by peg status: STABLE, DEPEG, UNKNOWN
typestringFilter by issuer type: Centralized, Decentralized DAO, Algorithmic Protocol
symbolstringComma-separated symbols: USDC,USDT,DAI
min_mcapnumber0Minimum market cap in USD

Example Request

curl https://stablelens.com/api/v1/stablecoins?limit=10&status=STABLE&min_mcap=100000000

Example Response

{
  "data": [
    {
      "symbol": "USDC",
      "name": "USD Coin",
      "issuer": "Circle",
      "issuer_type": "Centralized",
      "governance": "Issuer Controlled",
      "treasury": "Audited Reports",
      "market_cap": 43500000000,
      "peg_status": "STABLE",
      "peg_deviation": 0.0001,
      "last_updated": "2025-01-31T12:00:00Z"
    }
  ],
  "meta": {
    "count": 1,
    "timestamp": "2025-01-31T12:05:00Z",
    "source": "stablelens.com"
  }
}
GET/api/v1/market

Stablecoin market summary with aggregate statistics, health scores, and market cap distribution.

Example Request

curl https://stablelens.com/api/v1/market

Example Response

{
  "data": {
    "total_stablecoins": 87,
    "total_market_cap": 187000000000,
    "stable_count": 72,
    "depeg_count": 3,
    "avg_peg_deviation": 0.0023,
    "market_cap_by_type": {
      "centralized": 158000000000,
      "dao": 18000000000,
      "algorithmic": 11000000000
    },
    "health_score": 83
  },
  "meta": {
    "timestamp": "2025-01-31T12:05:00Z",
    "source": "stablelens.com"
  }
}
GET/api/health

API health check. Returns 200 if the service is operational.

Example Request

curl https://stablelens.com/api/health

Example Response

{ "status": "ok" }

Rate Limits

PlanRequests/DayEndpoints
Free100All public endpoints
Standard5,000All endpoints + webhooks
ProUnlimitedAll endpoints + webhooks + historical

Need higher limits or custom endpoints?

Contact us for enterprise API access with dedicated support.

View PricingContact Sales