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.
GET
https://api.bitcompare.net/v1/rates?category=staking&symbol=ETHcurl -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
| Field | Type | Description |
|---|---|---|
providerrequired | string | Provider slug identifier (e.g., nexo, aave, lido) |
symbolrequired | string | Asset ticker symbol (e.g., BTC, ETH, USDC) |
coin_id | string | CoinGecko ID for the asset |
categoryrequired | string | Rate category: lending, staking, borrowing, price |
raterequired | number | Interest rate as percentage (e.g., 5.25 = 5.25%) |
metadata | object | Additional data: lockup, min_deposit, tier, etc. |
region | string | Geographic region code |
last_updatedrequired | string | ISO 8601 timestamp of last rate update |
Example Queries
All ETH staking rates
GET
https://api.bitcompare.net/v1/rates?category=staking&symbol=ETHcurl -X GET "https://api.bitcompare.net/v1/rates?category=staking&symbol=ETH" \
-H "Accept: application/json"All Solana staking options
GET
https://api.bitcompare.net/v1/rates?category=staking&symbol=SOLcurl -X GET "https://api.bitcompare.net/v1/rates?category=staking&symbol=SOL" \
-H "Accept: application/json"Staking rates from Lido
GET
https://api.bitcompare.net/v1/rates?category=staking&provider=lidocurl -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.