VOOZH about

URL: https://apify.com/veeronica/fifa-world-cup-2026-results-fixtures-standings

โ‡ฑ FIFA World Cup 2026 Scraper โ€” Scores, Fixtures, Standings ยท Apify


๐Ÿ‘ FIFA World Cup 2026 โ€” Results, Fixtures & Standings avatar

FIFA World Cup 2026 โ€” Results, Fixtures & Standings

Pricing

from $5.00 / 1,000 group standings

Go to Apify Store

FIFA World Cup 2026 โ€” Results, Fixtures & Standings

Scrape FIFA World Cup 2026 data: live scores, match results, upcoming fixtures, group standings, the knockout bracket, goal scorers, cards, venues, and attendance. Filter by stage, match status, or team.

Pricing

from $5.00 / 1,000 group standings

Rating

0.0

(0)

Developer

๐Ÿ‘ Veronica

Veronica

Maintained by Community

Actor stats

0

Bookmarked

9

Total users

5

Monthly active users

an hour ago

Last modified

Categories

Share

FIFA World Cup 2026 Scraper โ€” Results, Fixtures, Standings & Bracket

Overview

This Apify Actor scrapes the entire FIFA World Cup 2026 โ€” all 104 matches across the USA, Canada, and Mexico โ€” in a single run, returning structured, deduplicated results. Get live scores, final results, upcoming fixtures, the full knockout bracket, group standings, goal scorers, cards, venues, and attendance without any API keys or coding.

Data updates live during matches, so a run started mid-game returns the latest available scoreline, scorers, and cards.

At a glance:

  • โšฝ All 104 matches โ€” group stage through the final
  • ๐Ÿ“Š All 12 group tables (48 teams)
  • ๐Ÿ† Full knockout bracket, including placeholder fixtures before teams qualify
  • ๐Ÿ”„ Auto-deduplicated across overlapping stage windows
  • ๐Ÿ’พ Export to JSON, CSV, Excel, or XML
  • ๐Ÿ”Œ No API key required

โœจ Core Features

  • Complete coverage โ€” Group Stage, Round of 32, Round of 16, Quarterfinals, Semifinals, Third-Place Match, and Final
  • Live scores & results โ€” scoreline, status (scheduled / live / full-time), and winner, updated in real time
  • Upcoming fixtures โ€” kickoff times, venues, and broadcasters for games not yet played
  • Knockout bracket โ€” every knockout tie, with placeholders like Group A Winner vs Group B Runner-up until teams are confirmed
  • Group standings โ€” rank, played, W/D/L, goals for/against, goal difference, points, and qualification status
  • Goal scorers & cards โ€” every goal (with minute, own goals, penalties) and every yellow/red card
  • Match context โ€” stadium, city, country, attendance, TV/streaming networks, and a recap headline
  • Powerful filters โ€” by stage, match status, or specific team
  • Auto-deduplication โ€” each match appears exactly once, even across stage boundaries

๐Ÿ“ฅ Input Parameters

All parameters are optional. Run with empty input to scrape the whole tournament plus standings.

FieldTypeDefaultNotes
stagesarrayall stagesStages to scrape: group-stage, round-of-32, round-of-16, quarterfinals, semifinals, 3rd-place-match, final
matchStatusstringallFilter by status: all, completed (results), upcoming (fixtures), live
teamstringโ€”Only matches involving this team. Accepts a name or 3-letter code (e.g. Mexico, USA, BRA)
includeMatchDetailsbooleantrueInclude goal scorers, cards, attendance, broadcasts, and recap
includeStandingsbooleantrueAlso output the 12 group tables (one row per team)

๐Ÿ“ค Output Fields

Results are stored in the default dataset. Each item has a recordType of either match or standing.

Match records (recordType: "match")

Identity: id, stage, stageSlug, group, name, shortName, url

Schedule & status: date (ISO kickoff), status (scheduled / in / post), statusDetail, completed

Teams (homeTeam & awayTeam): name, abbreviation, logo, score, shootoutScore, winner, advanced, form, record

Result: score (e.g. 2-0 or 1-1 (4-2 pens)), winner

Venue: venue.name, venue.city, venue.country, attendance

Match events: goals[] (minute, player, teamId, ownGoal, penalty), cards[] (minute, player, teamId, type), broadcasts[], recap

Standing records (recordType: "standing")

group, rank, team (name / abbreviation / logo), played, wins, draws, losses, goalsFor, goalsAgainst, goalDifference, points, note (qualification status, e.g. Advance to Round of 32)


๐Ÿ’ต Pricing

Pay-per-event โ€” you pay only for the data you actually pull:

  • Actor start โ€” once per run
  • Match โ€” per match record returned
  • Group standings โ€” once per run, only when Include group standings is on (flat fee for all 12 tables)

See the Pricing tab on the Actor's page for current rates.


โš ๏ธ Notes & Limitations

  • Unplayed matches return score: null and winner: null. Knockout fixtures show placeholder team names (e.g. Group D 2nd Place) until the bracket is decided.
  • Status values: scheduled (upcoming), in (live now), post (finished). A draw is reported as winner: "Draw" once completed.
  • Mixed dataset: matches and standings share one dataset. The dataset views ("Matches" and "Group standings") control which columns display โ€” standings columns appear blank on match rows and vice versa.
  • Freshness: schedule the Actor to re-run during the tournament (11 June โ€“ 19 July 2026) to keep results and standings current.
  • Source: publicly available match data. Use responsibly and in line with applicable terms and laws.

๐Ÿงช Usage Examples

Whole tournament (default)

{
"matchStatus":"all",
"includeMatchDetails":true,
"includeStandings":true
}

Only completed results

{
"matchStatus":"completed",
"includeStandings":false
}

Upcoming fixtures, knockout rounds only

{
"stages":["round-of-32","round-of-16","quarterfinals","semifinals","final"],
"matchStatus":"upcoming"
}

One team's matches

{
"team":"Mexico",
"includeStandings":false
}

Group standings only

{
"stages":[],
"matchStatus":"completed",
"includeStandings":true,
"includeMatchDetails":false
}

๐Ÿ› ๏ธ Integration Guide

Replace <YOUR_API_TOKEN> with your Apify token and <ACTOR_ID> with this Actor's ID (e.g. your-username/world-cup-2026-scraper).

JavaScript / TypeScript

$npminstall apify-client
import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'<YOUR_API_TOKEN>'});
const input ={matchStatus:'completed',includeStandings:true};
const run =await client.actor('<ACTOR_ID>').call(input);
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Python

$pip install apify-client
from apify_client import ApifyClient
client = ApifyClient("<YOUR_API_TOKEN>")
run_input ={"matchStatus":"completed","includeStandings":True}
run = client.actor("<ACTOR_ID>").call(run_input=run_input)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

CLI

$echo'{"matchStatus":"completed"}'| apify call <ACTOR_ID>--silent --output-dataset

MCP Server

{
"mcpServers":{
"apify":{
"command":"npx",
"args":["mcp-remote","https://mcp.apify.com/?tools=<ACTOR_ID>","--header","Authorization: Bearer <YOUR_API_TOKEN>"]
}
}
}

FAQ & Best Practices

Q: How current is the data? A: Scores, scorers, cards, and standings update live during matches, so a run started mid-game returns the latest available state.

Q: How do I get only my country's games? A: Set the team filter to a country name or 3-letter code (e.g. Argentina or ARG).

Q: Can I get the knockout bracket before the groups finish? A: Yes. Scrape the knockout stages with matchStatus: "upcoming" โ€” fixtures appear with placeholder names (e.g. Group A Winner) and resolve to real teams as the bracket fills in.

Q: What's the difference between the statuses? A: scheduled = upcoming fixture, in = match in progress, post = finished. Use matchStatus to filter to exactly what you need.

Q: Do I need a proxy? A: No setup needed. The Actor uses the default Apify Proxy automatically, which is sufficient for the public data source.


Ready to start? Click Start with the default input to grab the full tournament, or set a filter to narrow it down to one stage, status, or team.

You might also like

FIFA World Cup 2026 โ€“ Live Scores & Stats

seralifatih/wc2026-stats

Live scores, match stats, standings, and player data for all 104 World Cup 2026 matches. Clean JSON output for dashboards, fantasy apps, and betting tools. Powered by BallDontLie API.

๐Ÿ‘ User avatar

Fatih ฤฐlhan

24

World Cup Results & Tables

trovevault/world-cup-results-tables

Extracts World Cup fixtures, results, scores, teams, groups, venues, and tables. Export data, run via API, schedule and monitor runs, or integrate with other tools.

World Cup Ticket Scraper 2026 โ€“ Live Resale Prices

openclawai/worldcup-tickets-scraper

Scrape live 2026 FIFA World Cup resale ticket inventory โ€” prices, sections, rows, deal scores and venues โ€” with rich filters for team, host country, date and price.

FIFA World Cup 2026 - Real-Time Events Notifications ๐Ÿ”ฅ Free

azzouzana/world-cup-2026-real-time-events-notifications

Free โšฝ World Cup 2026 live alerts straight to your webhook! Goals ๐ŸŽฏ (scorer + assist when available), cards, subs, kickoff/HT/FT & more!. One setup, real-time JSON POSTs all tournament long - no polling, no F5. Paste your webhook URL & never miss a moment! ๐Ÿ†

19

5.0

wc2026-fixture | ไธ–็•Œๆฏ2026่ต›็จ‹ๆ•ฐๆฎ

kindly_bolt/wc2026-actors

WC2026 fixture scraper โ€” all 104 FIFA World Cup 2026 matches, groups & venues. Filter by team or group. JSON output. Supports English, ็ฎ€ไฝ“ไธญๆ–‡ & BM. Perfect for betting & fantasy apps.

Immowelt.de ๐Ÿ’› $1/1K Scraper (By Search URL)

azzouzana/immowelt-de-search-results-scraper-by-search-url

๐Ÿš€ #1 Scrape Immowelt.de classified or new projects search results effortlessly. Extract property data to JSON, CSV, or Excel via API in seconds. Just enter a search URL and get blazing-fast, affordable results. Perfect for real estate analysis and market monitoring โšก

103

5.0

Commercial Property AU

abotapi/realcommercial-au-scraper

From $1/1K. Extract Australian commercial property listings with full detail data. Get descriptions, highlights, detailed attributes, coordinates, nearby places, agent contacts, agency contacts, images, and rich PDP metadata per listing.

Reddit Scraper - Posts, Comments, Scores & Subreddits

thirdwatch/reddit-scraper

Scrape Reddit posts, comments, and subreddits. Search globally or within specific subreddits. Get post title, body, score, comments, author, flair, awards, and media URLs. Ultra-fast HTTP-only scraper using Reddit's built-in JSON API.

179

5.0

Hiring.cafe Job Scraper

manojachari/hiring-cafe-scraper

Scrapes job listings from hiring.cafe using their internal API. Supports filtering by keyword, location, workplace type, seniority, and more.

28

1.0