/v1/search
Search stablecoins
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/stablecoins-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stablecoins-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stablecoins-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/stablecoins-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": 25,
"query": "usd",
"total": 212,
"stablecoins": [
{
"id": "1",
"name": "Tether",
"price": 0.999575,
"symbol": "USDT",
"peg_type": "peggedUSD",
"chains_count": 127,
"dominance_pct": 59.121,
"peg_mechanism": "fiat-backed",
"circulating_usd": 186844172425,
"peg_deviation_pct": -0.0425
},
{
"id": "2",
"name": "USD Coin",
"price": 0.999706,
"symbol": "USDC",
"peg_type": "peggedUSD",
"chains_count": 151,
"dominance_pct": 24.063,
"peg_mechanism": "fiat-backed",
"circulating_usd": 76046549673,
"peg_deviation_pct": -0.0294
},
{
"id": "209",
"name": "Sky Dollar",
"price": 0.99974,
"symbol": "USDS",
"peg_type": "peggedUSD",
"chains_count": 7,
"dominance_pct": 2.699,
"peg_mechanism": "crypto-backed",
"circulating_usd": 8531341863,
"peg_deviation_pct": -0.026
},
{
"id": "262",
"name": "World Liberty Financial USD",
"price": 0.998593,
"symbol": "USD1",
"peg_type": "peggedUSD",
"chains_count": 8,
"dominance_pct": 1.467,
"peg_mechanism": "fiat-backed",
"circulating_usd": 4636964271,
"peg_deviation_pct": -0.1407
},
{
"id": "146",
"name": "Ethena USDe",
"price": 0.999484,
"symbol": "USDe",
"peg_type": "peggedUSD",
"chains_count": 28,
"dominance_pct": 1.42,
"peg_mechanism": "crypto-backed",
"circulating_usd": 4488445252,
"peg_deviation_pct": -0.0516
},
{
"id": "173",
"name": "BlackRock USD",
"price": 1,
"symbol": "BUIDL",
"peg_type": "peggedUSD",
"chains_count": 8,
"dominance_pct": 0.954,
"peg_mechanism": "fiat-backed",
"circulating_usd": 3015959335,
"peg_deviation_pct": 0
},
{
"id": "120",
"name": "PayPal USD",
"price": 1.000011,
"symbol": "PYUSD",
"peg_type": "peggedUSD",
"chains_count": 17,
"dominance_pct": 0.882,
"peg_mechanism": "fiat-backed",
"circulating_usd": 27868
…