DeFi
Stablecoin supply & peg API
Circulating supply and current price for stablecoins (peg/depeg check), or a single symbol. Sourced from DefiLlama. Answers 'is this stablecoin holding its peg' and 'how big is it'.
Price$0.01per request
MethodPOST
Route/v1/defi/stablecoins
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache300s public
defistablecoinpegdepegsupplydefillama
API URL
Integration docshttps://x402.hexl.dev/v1/defi/stablecoinsExample request
{
"symbol": "USDC"
}Example response
{
"count": 1,
"stablecoins": [
{
"symbol": "USDC",
"name": "USD Coin",
"circulatingUsd": 34000000000,
"price": 1,
"depegged": false
}
]
}Input schema
{
"type": "object",
"properties": {
"symbol": {
"type": "string",
"examples": [
"USDC",
"DAI"
]
}
}
}Output schema
{
"type": "object",
"required": [
"count",
"stablecoins"
],
"properties": {
"count": {
"type": "number"
},
"stablecoins": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
}
}
}