{
  "openapi": "3.1.0",
  "info": {
    "title": "World Cup 2026 Match API",
    "version": "1.0.0",
    "description": "Fixture, teams, groups, local kickoff times, changes and ICS calendars for FIFA World Cup 2026."
  },
  "servers": [
    {
      "url": "https://worldcupfixtureapi.com"
    }
  ],
  "paths": {
    "/api/matches": {
      "get": {
        "summary": "List matches with filters"
      }
    },
    "/api/matches/today": {
      "get": {
        "summary": "List matches for today's local date"
      }
    },
    "/api/matches/{id}": {
      "get": {
        "summary": "Get one match"
      }
    },
    "/api/teams": {
      "get": {
        "summary": "List teams"
      }
    },
    "/api/teams/{code}/matches": {
      "get": {
        "summary": "List matches for a team"
      }
    },
    "/api/groups": {
      "get": {
        "summary": "List groups"
      }
    },
    "/api/groups/{group}/standings": {
      "get": {
        "summary": "Get computed group standings"
      }
    },
    "/api/venues": {
      "get": {
        "summary": "List venues when available"
      }
    },
    "/api/calendar.ics": {
      "get": {
        "summary": "Download filtered calendar"
      }
    },
    "/api/changes": {
      "get": {
        "summary": "List matches changed since a timestamp"
      }
    }
  }
}