Catalog/defi-stablecoin-chains

DeFi

Stablecoin supply by chain API

Total USD-pegged stablecoin circulating supply broken down by chain, ranked, with each chain's share of the global float. Sourced from DefiLlama /stablecoinchains. Answers 'how much stablecoin supply is on each chain','which chain holds the most stablecoins'.

Price$0.01per request
MethodPOST
Route/v1/defi/stablecoin-chains
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
defistablecoinsupplychainscirculatingdominancedefillamapeg
API URLhttps://x402.hexl.dev/v1/defi/stablecoin-chains
Integration docs
Example request
{
  "limit": 2
}
Example response
{
  "totalCirculatingUsd": 310309347637,
  "chainCount": 180,
  "chains": [
    {
      "chain": "Ethereum",
      "circulatingUsd": 158169186687,
      "dominancePct": 50.97
    },
    {
      "chain": "Tron",
      "circulatingUsd": 80000000000,
      "dominancePct": 25.78
    }
  ]
}
Input schema
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 200,
      "default": 50
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}