Skip to main content

Overview

The FIFA World Cup 2026 runs across the United States, Canada, and Mexico from June 11, 2026 (Mexico vs South Africa) through the Final. It is the first 48-team edition, with 104 matches played across 12 groups (A–L). V1 ships a dedicated set of World Cup convenience endpoints that hardcode the correct competition filter so you don’t have to look up IDs. They combine match data, group standings, knockout brackets, fan prediction polls, and tournament news in single calls.

Base URL

All endpoints require the x-api-key header. See Authentication.
Underlying canonical IDcompetitionId = 5930. These convenience routes resolve to the same data as the generic /api/v1/competition/5930/... endpoints; they’re shorter and pre-scoped to the tournament.

Convenience Endpoints

Responses follow the standard V1 schema. Match kickoff times are ISO 8601 strings (startTime). The overview endpoint returns partial data if a sub-query is briefly unavailable.

Groups

Example: Matches

Example: Standings

Example: Fan Prediction Odds

Integration Tips

  1. Landing page — call /api/v1/world-cup once for a tournament hub (games + standings + brackets in parallel).
  2. Live ticker — filter /api/v1/world-cup/matches by statusGroup === 3 (in-progress).
  3. Group tables — render /api/v1/world-cup/standings; each group is a rows array sorted by position.
  4. Fan engagement — display /api/v1/world-cup/odds vote percentages as progress bars.
  5. Match detail/api/v1/world-cup/game/{id} returns venue, lineups, events, and live commentary.
  6. Real-time updates — pair REST data with the V1 WebSocket for sub-second score deltas during matches.

Managers & Venues

V1 exposes full venue detail on game detail, and a partial coach signal on lineups (ID only, no name).

Venue (full detail with attendance)

GET /api/v1/game/{gameId} returns a complete venue object — including live attendance once the gate count is published.

Manager / Coach (partial — ID only)

Coaches surface in GET /api/v1/game/{gameId}/lineups as the last entry in each team’s members[] array. The marker is formation.name === "Coach" with status: 4 and statusText: "Management".
V1 does not return a coach name — only an athlete id. The /api/v1/competitor/{id} endpoint also does not expose a coach field. If you need the coach’s name, country, or career, use the V2 team detail endpoint (see recommendation below).

Cross-version recommendation

V2’s /api/teams/{teamId} is the single richest call: manager (with full name) plus home venue (with coordinates and capacity) in one response. See V2 World Cup — Managers & Venues.
Last modified on June 29, 2026