Skip to main content

Get Launchpool Project List

Query the Launchpool activity (project) list. Results are sorted by creation time descending (newest first) and support cursor-based pagination.

info
  • Authentication is not required
  • Only online, main-site public activities are returned
  • nextPageCursor being an empty string indicates the last page

HTTP Request

GET/v5/spot-x/launchpool/project/list

Request Parameters

ParameterRequiredTypeComments
statustrueintegerActivity phase filter. 0: Upcoming; 1: Ongoing; 2: Ended
activityCoinfalsestringFilter by reward coin symbol (case-insensitive), e.g. BTC, ETH
projectIdfalsestringExact activity code. Use to query a single project
cursorfalsestringPagination cursor returned as nextPageCursor in the previous response. Omit for the first page
limitfalseintegerNumber of items per page. Default: 10. Max: 10

Response Parameters

ParameterTypeComments
listarrayList of Launchpool activity objects
> projectIdstringUnique activity code
> activityCoinstringThe reward coin of the activity
> rewardCoinstringThe coin distributed as the reward
> statusintegerActivity status. 0: Upcoming; 1: Ongoing; 2: Ended
> totalRewardstringSum of all pool reward amounts
> stakeStartTimestringStaking start time, Unix timestamp in milliseconds
> stakeEndTimestringStaking end time (auto-redeem time), Unix timestamp in milliseconds
> totalParticipantCountstringTotal number of participants across all pools
> poolsarrayPer-pool staking details for this activity
>> poolIdstringUnique pool code
>> stakeCoinstringThe coin users stake into this pool
>> aprstringCalculated annual percentage rate for this pool
>> totalStakedAmountstringTotal amount currently staked in this pool
>> participantCountstringNumber of participants in this pool
nextPageCursorstringCursor for the next page. Empty string means last page

Request Example

GET /v5/spot-x/launchpool/project/list?status=1&limit=10 HTTP/1.1
Host: api.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"list": [
{
"projectId": "LAUNCHPOOL_BTC_2024Q1",
"activityCoin": "BTC",
"rewardCoin": "BTC",
"status": 1,
"totalReward": "10",
"stakeStartTime": "1704067200000",
"stakeEndTime": "1706745600000",
"totalParticipantCount": "5000",
"pools": [
{
"poolId": "POOL_BTC_USDT",
"stakeCoin": "USDT",
"apr": "15.50",
"totalStakedAmount": "1000000",
"participantCount": "3000"
},
{
"poolId": "POOL_BTC_MNT",
"stakeCoin": "MNT",
"apr": "20.00",
"totalStakedAmount": "500000",
"participantCount": "2000"
}
]
}
],
"nextPageCursor": "eyJpZCI6MTIzfQ=="
},
"retExtInfo": {},
"time": 1705000000000
}