/v1/liquid-staking
Liquid-staking host zones (stTokens & redemption rates)
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/stride-api/v1/liquid-staking" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stride-api/v1/liquid-staking", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stride-api/v1/liquid-staking");
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/stride-api/v1/liquid-staking",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Stride's liquid-staking host zones — every chain Stride liquid-stakes, with its stToken (e.g. stATOM, stTIA), the redemption rate (how much of the native token one stToken is worth; it rises as staking rewards accrue) and the total amount staked. No parameters.",
"count": 15,
"source": "Stride (stride-1) LCD",
"host_zones": [
{
"halted": false,
"chain_id": "celestia",
"st_token": "stTIA",
"host_denom": "utia",
"bech32prefix": "celestia",
"total_staked": "770163849340",
"redemption_rate": 1.168984,
"last_redemption_rate": 1.168947,
"unbonding_period_days": 21
},
{
"halted": false,
"chain_id": "comdex-1",
"st_token": "stCMDX",
"host_denom": "ucmdx",
"bech32prefix": "comdex",
"total_staked": "2312175142407",
"redemption_rate": 1.445795,
"last_redemption_rate": 1.445795,
"unbonding_period_days": 21
},
{
"halted": false,
"chain_id": "cosmoshub-4",
"st_token": "stATOM",
"host_denom": "uatom",
"bech32prefix": "cosmos",
"total_staked": "2878550394869",
"redemption_rate": 1.911525,
"last_redemption_rate": 1.911193,
"unbonding_period_days": 21
},
{
"halted": false,
"chain_id": "dydx-mainnet-1",
"st_token": "stDYDX",
"host_denom": "adydx",
"bech32prefix": "dydx",
"total_staked": "513479707315709435385952",
"redemption_rate": 1.149526,
"last_redemption_rate": 1.149526,
"unbonding_period_days": 30
},
{
"halted": false,
"chain_id": "evmos_9001-2",
"st_token": null,
"host_denom": "aevmos",
"bech32prefix": "evmos",
"total_staked": "12432591599137871682174983",
"redemption_rate": 1.589778,
"last_redemption_rate": 1.589778,
"unbonding_period_days": 14
},
{
"halted": false,
"chain_id": "haqq_11235-1",
"st_token": null,
"host_denom": "aISLM",
"bech32prefix": "haqq",
"total_staked": "106608395004107827207797844",
"redemption_rate": 1.055416,
"last_redemption_rate": 1.055403,
"unbonding_period_days": 21
},
{
"halted": false,
"chain_id": "injective-1",
"st_token": n
…