Skip to main content

Get Puzzle Project List

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

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

HTTP Request

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

Request Parameters

ParameterRequiredTypeComments
statustrueintegerActivity phase filter. 0: Upcoming; 1: Ongoing; 2: Ended
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
> projectIdstringUnique activity code
> activityCoinstringThe coin that the activity is centered on
> rewardCoinstringThe coin distributed as the reward
> statusintegerActivity status. 0: Upcoming; 1: Ongoing; 2: Ended
> startTimestringActivity start time, Unix timestamp in milliseconds
> endTimestringActivity end time, Unix timestamp in milliseconds
> totalRewardstringTotal reward pool size
> participantCountstringTotal number of registered participants
nextPageCursorstringCursor for the next page. Empty string means last page

Request Example

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

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"list": [
{
"projectId": "PUZZLE_BTC_2024Q1",
"activityCoin": "BTC",
"rewardCoin": "USDT",
"status": 1,
"startTime": "1704067200000",
"endTime": "1706745600000",
"totalReward": "50000",
"participantCount": "1234"
}
],
"nextPageCursor": "eyJpZCI6MTIzfQ=="
},
"retExtInfo": {},
"time": 1705000000000
}