Skip to main content

Get Token Splash Project List

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

info
  • Authentication is not required
  • Only released, main-site public activities are returned
  • nextPageCursor being an empty string indicates the last page
  • activityEndTime = max(announceTime, tradeAnnounceTime)
  • registrationStartTime = min of non-zero values among signUpBeginTime and tradeSignUpBeginTime

HTTP Request

GET/v5/spot-x/token-splash/project/list

Request Parameters

ParameterRequiredTypeComments
statustrueintegerActivity phase filter. 0: Upcoming (registration not yet started); 1: Ongoing; 2: Ended (announcement time has passed)
projectIdfalsestringExact activity code. Use to query a single project
activityCoinfalsestringFilter by activity coin symbol (case-insensitive), e.g. BTC, ETH
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
listarrayActivity items for the current page
> statusintegerActivity status. 0: Upcoming; 1: Ongoing; 2: Ended
> projectIdstringUnique activity code
> activityCoinstringThe coin that the activity is centered on
> rewardCoinstringThe coin distributed as the reward. Resolved in priority order: new pool token → old pool token → trade pool token
> totalRewardstringTotal reward pool size (sum of new, old, and trade prize pool amounts)
> participantCountstringTotal number of registered participants
> registrationStartTimestringEarliest registration start time, Unix timestamp in milliseconds. Equals min(signUpBeginTime, tradeSignUpBeginTime), ignoring zero values
> activityEndTimestringActivity end time, Unix timestamp in milliseconds. Equals max(announceTime, tradeAnnounceTime)
nextPageCursorstringCursor for the next page. Empty string means last page

Request Example

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

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"list": [
{
"status": 1,
"projectId": "TOKENSPLASH_BTC_2024Q1",
"activityCoin": "BTC",
"rewardCoin": "USDT",
"totalReward": "100000",
"participantCount": "3456",
"registrationStartTime": "1704067200000",
"activityEndTime": "1706745600000"
}
],
"nextPageCursor": "eyJpZCI6MTIzfQ=="
},
"retExtInfo": {},
"time": 1705000000000
}