Skip to main content

Get Launchpool Current Staking

Query the authenticated user's active staking positions across all ongoing Launchpool activities, including a USD-denominated portfolio summary and per-position details.

info
  • Authentication is required
  • Returns up to 30 positions, covering all active staking positions without pagination

HTTP Request

GET/v5/spot-x/launchpool/user/current-staking

Request Parameters

No request parameters required.

Response Parameters

ParameterTypeComments
totalInvestmentUsdstringTotal USD value of all active staking positions
totalEarningsUsdstringTotal USD value of accumulated earnings across all positions
todayEarningsUsdstringToday's earnings across all positions, in USD
listarrayPer-position staking details. Up to 30 items
> stakeCoinstringThe coin staked into this position
> rewardCoinstringThe coin earned as reward
> stakeAmountstringTotal amount currently staked
> totalRewardstringAccumulated reward earned so far
> autoRedeemDatestringAuto-redeem time, Unix timestamp in milliseconds. The principal will be automatically returned on this date. Empty string if not set

Request Example

GET /v5/spot-x/launchpool/user/current-staking HTTP/1.1
Host: api.bybit.com
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1705000000000
X-BAPI-RECV-WINDOW: 5000
X-BAPI-SIGN: XXXXX

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"totalInvestmentUsd": "15000.00",
"totalEarningsUsd": "120.50",
"todayEarningsUsd": "8.20",
"list": [
{
"stakeCoin": "USDT",
"rewardCoin": "BTC",
"stakeAmount": "10000",
"totalReward": "0.00120",
"autoRedeemDate": "1706745600000"
},
{
"stakeCoin": "MNT",
"rewardCoin": "BTC",
"stakeAmount": "50000",
"totalReward": "0.00050",
"autoRedeemDate": "1706745600000"
}
]
},
"retExtInfo": {},
"time": 1705000000000
}