/v1/search
Find stablecoins by name or symbol
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/stablecoinsupply-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stablecoinsupply-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stablecoinsupply-api/v1/search");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/stablecoinsupply-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 3,
"query": "usdc",
"source": "DeFiLlama",
"matched": 3,
"stablecoins": [
{
"id": "2",
"name": "USD Coin",
"symbol": "USDC",
"peg_type": "peggedUSD",
"circulating_usd": 74950875208.41
},
{
"id": "307",
"name": "USD CoinVertible",
"symbol": "USDCV",
"peg_type": "peggedUSD",
"circulating_usd": 12589971.95
},
{
"id": "164",
"name": "USDCB",
"symbol": "USDCB",
"peg_type": "peggedUSD",
"circulating_usd": 225172.36
}
]
},
"meta": {
"timestamp": "2026-06-14T08:04:14.929Z",
"request_id": "fcc8d3d1-7eff-478f-8a2f-dd420c2fb721"
},
"status": "ok",
"message": "Stablecoins retrieved successfully",
"success": true
}