Skip to main content

Get Token Splash User Activity Params

Query the authenticated user's participation details and trade-task progress for Token Splash activities.

info
  • Authentication is required
  • Only returns activities where the user has already registered
  • Only trade-task activities are returned (deposit-only task types are excluded)
  • Only activities that have not yet reached their announcement time are returned (rewards not yet distributed)
  • Estimated reward formula: min(tradedAmount / tradeRequiredAmount, 1) × maxRewardAmount, truncated to 4 decimal places

HTTP Request

GET/v5/spot-x/token-splash/user/activity-params

Request Parameters

ParameterRequiredTypeComments
projectIdfalsestringFilter by exact activity code. Returns data for a single project when provided
activityCoinfalsestringFilter by activity coin symbol (case-insensitive), e.g. BTC, ETH

Response Parameters

ParameterTypeComments
listarrayUser activity items. Empty array if the user has not registered for any matching activity
> projectIdstringUnique activity code
> activityCoinstringThe coin that the activity is centered on
> tradeTaskobjectTrade task details and the user's current progress
>> tradeRequiredAmountstringTotal trade volume required to earn the full reward
>> tradeUnitstringThe coin unit for the trade task
>> tradedAmountstringTrade volume the user has accumulated so far
>> maxRewardAmountstringMaximum reward the user can earn if the full required volume is traded
>> estimatedRewardAmountstringEstimated reward based on current progress, truncated to 4 decimal places. Formula: min(tradedAmount / tradeRequiredAmount, 1) × maxRewardAmount
>> rewardCoinstringCoin in which the trade-task reward is distributed

Request Example

GET /v5/spot-x/token-splash/user/activity-params 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": {
"list": [
{
"projectId": "TOKENSPLASH_BTC_2024Q1",
"activityCoin": "BTC",
"tradeTask": {
"tradeRequiredAmount": "0.5",
"tradeUnit": "BTC",
"tradedAmount": "0.3",
"maxRewardAmount": "200",
"estimatedRewardAmount": "120.0000",
"rewardCoin": "USDT"
}
}
]
},
"retExtInfo": {},
"time": 1705000000000
}