category=staking

Staking Rates

Get staking rate data by filtering the Rates API with category=staking. Covers PoS staking, liquid staking, and exchange staking across 20+ providers.

Use the main /v1/rates endpoint with category=staking to get staking rates.

Staking Types Covered

Native Staking

Direct PoS staking with validators. Typically requires lockup periods.

Liquid Staking

Stake and receive liquid tokens (stETH, rETH). No lockup, tradeable.

Exchange Staking

Staking through CeFi platforms. Often flexible terms.

DeFi Staking

Protocol-native staking including governance and liquidity mining.

Endpoint

Filter by category=staking and optionally by symbol or provider.

GEThttps://api.bitcompare.net/v1/rates?category=staking&symbol=ETH
curl -X GET "https://api.bitcompare.net/v1/rates?category=staking&symbol=ETH" \
  -H "Accept: application/json"
Response
{
  "rates": [
    {
      "provider": "lido",
      "symbol": "ETH",
      "coin_id": "ethereum",
      "category": "staking",
      "rate": 3.8,
      "metadata": {
        "type": "liquid",
        "token": "stETH"
      },
      "last_updated": "2026-03-04T04:00:00Z"
    },
    {
      "provider": "rocketpool",
      "symbol": "ETH",
      "coin_id": "ethereum",
      "category": "staking",
      "rate": 3.5,
      "metadata": {
        "type": "liquid",
        "token": "rETH",
        "min_stake": 0.01
      },
      "last_updated": "2026-03-04T04:00:00Z"
    },
    {
      "provider": "binance",
      "symbol": "SOL",
      "coin_id": "solana",
      "category": "staking",
      "rate": 7.2,
      "metadata": {
        "lockup_days": 0
      },
      "last_updated": "2026-03-04T04:00:00Z"
    }
  ],
  "count": 3,
  "timestamp": "2026-03-04T04:15:00Z"
}

Response Schema

Standard rate schema. Staking-specific data (type, token, lockup) is in the metadata field.

Rate Object Fields

FieldTypeDescription
providerrequiredstringProvider slug identifier (e.g., nexo, aave, lido)
symbolrequiredstringAsset ticker symbol (e.g., BTC, ETH, USDC)
coin_idstringCoinGecko ID for the asset
categoryrequiredstringRate category: lending, staking, borrowing, price
raterequirednumberInterest rate as percentage (e.g., 5.25 = 5.25%)
metadataobjectAdditional data: lockup, min_deposit, tier, etc.
regionstringGeographic region code
last_updatedrequiredstringISO 8601 timestamp of last rate update

Example Queries

All ETH staking rates

GEThttps://api.bitcompare.net/v1/rates?category=staking&symbol=ETH
curl -X GET "https://api.bitcompare.net/v1/rates?category=staking&symbol=ETH" \
  -H "Accept: application/json"

All Solana staking options

GEThttps://api.bitcompare.net/v1/rates?category=staking&symbol=SOL
curl -X GET "https://api.bitcompare.net/v1/rates?category=staking&symbol=SOL" \
  -H "Accept: application/json"

Staking rates from Lido

GEThttps://api.bitcompare.net/v1/rates?category=staking&provider=lido
curl -X GET "https://api.bitcompare.net/v1/rates?category=staking&provider=lido" \
  -H "Accept: application/json"

Popular Staking Assets

ETH
SOL
ATOM
DOT
ADA
MATIC
AVAX
NEAR
BNB
FTM
ALGO
XTZ

Start Building with Staking Data

Get your free API key and access real-time staking rates.