Skip to main content

Get Sports Group Stage Detail

Query the group stage standings and match schedule detail for a sports prediction event. Returns all groups with team standings (points, goal difference, W/D/L) and associated matches.

HTTP Request

POST/v5/alpha/prediction/sports/group-stage-detail

Request Parameters

ParameterRequiredTypeComments
eventTypetrueintegerSports event type. Refer to predictionEventType. Phase 1: 1 (FIFA_2026)
groupNamefalsestringFilter by group name (e.g., A, B, … L for FIFA 2026)

Response Parameters

ParameterTypeComments
groupsarrayGroup stage data
> groupNamestringGroup identifier (e.g., A)
> standingsarrayTeam standings for this group, sorted by rank
>> rankintegerCurrent rank within the group
>> teamNamestringTeam name
>> playedintegerMatches played
>> wonintegerMatches won
>> drawnintegerMatches drawn
>> lostintegerMatches lost
>> goalsForintegerGoals scored
>> goalsAgainstintegerGoals conceded
>> goalDifferenceintegerGoal difference (goalsFor − goalsAgainst)
>> pointsintegerTotal points
> matchesarrayMatches in this group
>> matchIdstringMatch ID
>> homeTeamstringHome team name
>> awayTeamstringAway team name
>> matchTimeintegerMatch start timestamp (UTC milliseconds)
>> statusintegerMatch status. Refer to predictionMatchStatus
>> homeScoreintegerHome team score (-1 if not yet played)
>> awayScoreintegerAway team score (-1 if not yet played)
>> eventIdstringLinked prediction event ID (if markets are available)

Request Example

POST /v5/alpha/prediction/sports/group-stage-detail 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
Content-Type: application/json

{
"eventType": 1,
"groupName": "A"
}

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"groups": [
{
"groupName": "A",
"standings": [
{
"rank": 1,
"teamName": "Argentina",
"played": 3,
"won": 3,
"drawn": 0,
"lost": 0,
"goalsFor": 7,
"goalsAgainst": 1,
"goalDifference": 6,
"points": 9
},
{
"rank": 2,
"teamName": "Brazil",
"played": 3,
"won": 2,
"drawn": 0,
"lost": 1,
"goalsFor": 5,
"goalsAgainst": 3,
"goalDifference": 2,
"points": 6
}
],
"matches": [
{
"matchId": "match_001",
"homeTeam": "Argentina",
"awayTeam": "Brazil",
"matchTime": 1750000000000,
"status": 3,
"homeScore": 2,
"awayScore": 0,
"eventId": "event_123"
}
]
}
]
},
"retExtInfo": {},
"time": 1704067200000
}