SYMBOL | NAME | ID | |
---|---|---|---|
1 | usdt | Tether | tether |
2 | usdc | USDC | usd-coin |
3 | usds | USDS | usds |
4 | usde | Ethena USDe | ethena-usde |
5 | susds | sUSDS | susds |
6 | dai | Dai | dai |
7 | fdusd | First Digital USD | first-digital-usd |
8 | usd0 | Usual USD | usual-usd |
9 | pyusd | PayPal USD | paypal-usd |
10 | xaut | Tether Gold | tether-gold |
11 | paxg | PAX Gold | pax-gold |
12 | usdx | Stables Labs USDX | usdx-money-usdx |
13 | usr | Resolv USR | resolv-usr |
14 | honey | Honey | honey-3 |
15 | tusd | TrueUSD | true-usd |
16 | usdb | USDB | usdb |
17 | usdy | Ondo US Dollar Yield | ondo-us-dollar-yield |
18 | frax | Frax | frax |
19 | busd | Binance-Peg BUSD | binance-peg-busd |
20 | deusd | Elixir deUSD | elixir-deusd |
blocmates researchcoinlist StableCoins
Updated 3 hours ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with api_name as (
SELECT
coingecko.get(
'/api/v3/coins/markets',
{ 'vs_currency': 'usd',
'category': 'stablecoins',
'page': '1' }
) as resp
union
all
SELECT
coingecko.get(
'/api/v3/coins/markets',
{ 'vs_currency': 'usd',
'category': 'stablecoins',
'page': '2' }
) as resp
union
all
SELECT
coingecko.get(
'/api/v3/coins/markets',
{ 'vs_currency': 'usd',
'category': 'stablecoins',
'page': '3' }
) as resp
union
all
SELECT
coingecko.get(
'/api/v3/coins/markets',
{ 'vs_currency': 'usd',
'category': 'stablecoins',
'page': '4' }
) as resp
)
Last run: about 3 hours agoAuto-refreshes every 24 hours
...
260
10KB
6s