Skip to main content

Get Launchpool User History

Query the authenticated user's completed Launchpool staking position history.

info
  • Authentication is required
  • Returns historical (ended) staking positions, not individual transactions
  • startTime and endTime filter by the staking period, not record creation time, and must be provided together

HTTP Request

POST/v5/spot-x/launchpool/user/history

Request Parameters

ParameterRequiredTypeComments
stakeCoinfalsestringFilter by stake coin symbol, e.g. USDT
rewardCoinfalsestringFilter by reward coin symbol, e.g. BTC
startTimefalsestringStaking period start filter, 13-digit Unix timestamp in milliseconds. Filters positions whose staking start time is on or after this value. Must be used together with endTime
endTimefalsestringStaking period end filter, 13-digit Unix timestamp in milliseconds. Filters positions whose staking end time is on or before this value. Must be used together with startTime
pageSizefalseintegerNumber of records per page. Default: 10. Max: 10
currentfalseintegerPage number (1-based). Default: 1. Max: 100

Response Parameters

ParameterTypeComments
listarrayCompleted staking position records for the current page
> stakeCoinstringThe coin that was staked in this position
> rewardCoinstringThe coin earned as reward
> totalRewardstringTotal reward earned for this completed position
> stakeStartTimestringPosition staking start time, Unix timestamp in milliseconds
> stakeEndTimestringPosition staking end time (auto-redeem time), Unix timestamp in milliseconds
totalintegerTotal number of records matching the filter
pageSizeintegerPage size used for this response
currentintegerCurrent page number

Request Example

POST /v5/spot-x/launchpool/user/history 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
Content-Type: application/json

{
"stakeCoin": "USDT",
"rewardCoin": "BTC",
"pageSize": 10,
"current": 1
}

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"list": [
{
"stakeCoin": "USDT",
"rewardCoin": "BTC",
"totalReward": "0.00250",
"stakeStartTime": "1704067200000",
"stakeEndTime": "1706745600000"
},
{
"stakeCoin": "MNT",
"rewardCoin": "BTC",
"totalReward": "0.00080",
"stakeStartTime": "1701388800000",
"stakeEndTime": "1704067200000"
}
],
"total": 12,
"pageSize": 10,
"current": 1
},
"retExtInfo": {},
"time": 1705000000000
}