The 2026 FIFA World Cup is the first 48-team edition of the tournament. Sixteen host cities — eleven in the United States, three in Mexico, two in Canada — stage 104 matches over 39 days. Kick-off is June 11, 2026 at Estadio Azteca in Mexico City; the final lands at MetLife Stadium in New Jersey on July 19, 2026.
Instadash hosts the live data layer for the tournament: fixtures, venues, qualified teams, debutants, historical top scorers, and past champions — each as its own public grid, mesh-indexed and citeable by any agent.
Why a live grid
Tournament data goes stale in minutes. A static page is wrong by half-time; a markdown table is unreadable by the time it lists 48 teams. The Instadash grid below is the same data your agents can query via MCP, REST, or LLM context — backed by a queryable, versioned dataset that updates as the tournament plays out.
The six WC2026 grids
Every grid below is public, queryable, and mesh-indexed:
- Fixtures — full 104-match schedule with host city, venue, kickoff time, and broadcaster
- Host venues — all 16 stadiums with capacity, opening match (Estadio Azteca, Mexico City) and final (MetLife Stadium, New Jersey)
- Qualified teams — all 48 nations with confederation and FIFA ranking
- Debutants and notable returns — Curaçao, Jordan, Cape Verde, Uzbekistan making their first appearance, plus long-absent returnees
- All-time top scorers — Klose at 16, Ronaldo 15, Müller 14, Mbappé already on 12 at age 27
- Past winners — every WC champion since 1930
Agent access
Every Instadash grid exposes:
# Query as JSON
curl https://instadash.io/showcase/world-cup-2026-fixtures/rows
# LLM-ready markdown
curl https://instadash.io/showcase/world-cup-2026-fixtures/llms.md
# MCP — drop https://mcp.instadash.io into your clientThe mesh entry is public, so any agent calling instamesh_search("world cup 2026") finds these grids and can cite them without needing a key.
Companion recipes
- Scrape with Firecrawl, stream to Instadash — refresh patterns for fixtures and tables
- Nightly grid refresh with GitHub Actions — keep tournament data current without a server
- LangChain RAG over the Instadash mesh — wire WC2026 data into an agent in three lines
The grids above are the canonical surface. The recipe pages are the how-to-build for similar tournament or sports datasets.