Skip to main content

Get Sports Timeline Stages

Query the tournament timeline stages for a sports prediction event. Returns all stages with their status (Done, Active, Upcoming) and associated match counts. Useful for displaying tournament bracket progress.

HTTP Request

GET/v5/alpha/prediction/sports/timeline-stages

Request Parameters

ParameterRequiredTypeComments
eventTypetrueintegerSports event type. Refer to predictionEventType. Phase 1: 1 (FIFA_2026)

Response Parameters

ParameterTypeComments
eventTypeintegerSports event type
stagesarrayTournament stage timeline
> stageCodestringStage code. Refer to predictionStageCode
> stageNamestringLocalized stage display name
> statusintegerStage status. Refer to predictionTimelineStatus
> matchCountintegerTotal number of matches in this stage
> startTimeintegerStage start timestamp (UTC milliseconds)
> endTimeintegerStage end timestamp (UTC milliseconds)

Request Example

GET /v5/alpha/prediction/sports/timeline-stages?eventType=1 HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1704067200000
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"eventType": 1,
"stages": [
{
"stageCode": "Groups",
"stageName": "Group Stage",
"status": 2,
"matchCount": 48,
"startTime": 1748995200000,
"endTime": 1751500800000
},
{
"stageCode": "R32",
"stageName": "Round of 32",
"status": 3,
"matchCount": 16,
"startTime": 1751587200000,
"endTime": 1752192000000
},
{
"stageCode": "R16",
"stageName": "Round of 16",
"status": 3,
"matchCount": 8,
"startTime": 1752278400000,
"endTime": 1752624000000
},
{
"stageCode": "QF",
"stageName": "Quarter-Finals",
"status": 3,
"matchCount": 4,
"startTime": 1752710400000,
"endTime": 1752883200000
},
{
"stageCode": "SF",
"stageName": "Semi-Finals",
"status": 3,
"matchCount": 2,
"startTime": 1752969600000,
"endTime": 1753056000000
},
{
"stageCode": "Final",
"stageName": "Final",
"status": 3,
"matchCount": 1,
"startTime": 1753142400000,
"endTime": 1753228800000
}
]
},
"retExtInfo": {},
"time": 1704067200000
}