OrbTop

Wimbledon Draws & Scores Scraper

SPORTSAI

Wimbledon Draws & Scores Scraper

Scrapes Wimbledon draws and match scores directly from the official wimbledon.com internal JSON feeds — the same endpoints the official site uses to render draws, match status, and per-set scoring. Covers all five draws: Men's Singles (MS), Ladies' Singles (LS), Men's Doubles (MD), Ladies' Doubles (LD), and Mixed Doubles (XD). No login, no proxy, no JavaScript rendering required.

What you get

Each record in the output dataset represents one Wimbledon match and includes:

Field Description
tournament_year Year (e.g. 2025)
draw_code Draw identifier: MS, LS, MD, LD, or XD
draw_name Full draw name (e.g. "Gentlemen's Singles")
round Round name (e.g. "First Round", "Quarter-Final")
match_id Wimbledon internal match identifier
court_name Court (e.g. "Centre Court", "No.1 Court")
scheduled_start Match start time (ISO 8601)
status Match status: Pre, Live, or Completed
player_1_name Player / team 1 display name
player_1_seed Player 1 seeding (null if unseeded)
player_1_country Three-letter country code (e.g. GBR)
player_1_atp_id ATP/WTA player ID
player_2_name Player / team 2 display name
player_2_seed Player 2 seeding
player_2_country Three-letter country code
player_2_atp_id ATP/WTA player ID
sets Per-set scores as a JSON string, e.g. [[6,4],[7,5],[6,3]]
winner Winning side: "1" or "2" (empty for unplayed matches)
duration_minutes Match duration in minutes
source Source feed URL

Input

All inputs are optional:

Field Default Description
year 2025 Tournament year. Update to 2026 after draws are published (~June 27, 2026).
drawCodes All five draws Array of draw codes to fetch. Leave empty for all: ["MS","LS","MD","LD","XD"]
maxItems 0 (unlimited) Cap on total records returned

Default run fetches all five 2025 draws — approximately 500+ match records covering the entire tournament.

Example input

{
  "year": 2026,
  "drawCodes": ["MS", "LS"],
  "maxItems": 100
}

Data source

The actor reads directly from:

https://www.wimbledon.com/en_GB/scores/feeds/<year>/draws/<DRAW_CODE>.json

This is the undocumented internal API the official Wimbledon website uses — not a third-party aggregator. Data is as current as the official site.

Note: The 2026 tournament draws are published approximately June 27, 2026 (one week before play begins on June 29). Historical years (2024, 2025) are always available.

Competitors

This actor is the only one on the Apify store that surfaces draws and scores directly from wimbledon.com. Alternatives like flashscore-derivatives scrape a third-party aggregator and cannot expose the seedings, court assignments, and match IDs that this actor provides.

Performance

  • Typical run time: under 30 seconds for all five draws
  • Memory: 256 MB
  • No proxy required — open JSON API, datacenter-friendly