← Developer Blog

What does the court surface actually change?

Grass holds 74.4% of service games, clay 66.0% — an 8.5-point gap. Yet the comeback rate barely moves. Measured over 2.2 million games.

· By the Live Tennis API team

The surface changes how hard it is to hold serve, and it changes it a lot. Across 2,239,440 service games in completed singles matches, the server held 74.43% on grass, 69.95% on hard and 65.98% on clay — a spread of 8.45 percentage points. What it does not meaningfully change is whether a match can be recovered: the rate of winning after losing the first set moves only 0.73 points across the same three surfaces.

Put together, that is the finding: the surface decides how the points go, not who ends up winning.

How often is serve held on each surface?

Surface Service games Held Robustness check
Grass 74,673 74.43% 74.78%
Hard 1,222,994 69.95% 70.26%
Clay 941,773 65.98% 66.23%

A server on grass wins roughly three service games in four; on clay, closer to two in three. Over a ten-game set that is the difference between a comfortable hold pattern and a set where breaks are routine.

The right-hand column is a robustness check, not a second measurement. Holds are identified by walking the point-by-point tape and attributing each completed game to whoever was serving during it; the check re-runs the same calculation using only games where the server provably alternated to the next game, which is the signature of a cleanly recorded game. It moves every figure by less than a third of a point, so the ordering is not an artefact of how games are detected.

Who holds serve, by tour — and the check that matters

Tour Service games Held
ATP 230,715 78.62%
Challenger (men) 622,018 74.10%
ITF (men) 529,948 70.26%
WTA 266,503 64.36%
Challenger (women) 92,396 60.40%
ITF (women) 553,157 58.93%

This is the external check on everything above. Tour-level hold rates are widely published: roughly 79% for the ATP tour and roughly 64% for the WTA tour. The method here — walking a point-by-point tape, crediting each completed game to whoever was serving — was not tuned to reproduce either, and lands on 78.62% and 64.36%. Two independent figures, both matched, from data that knows nothing about them.

It also shows the surface is not the biggest thing on the board. The gap between the men's and women's main tours is 14.26 points, against 8.45 between grass and clay. And hold rate falls with the tier inside each: 78.62 → 74.10 → 70.26 for the men, 64.36 → 60.40 → 58.93 for the women. Serve dominance is mostly about who is serving, then about how far down the rankings you are, and only then about the court.

One consequence worth keeping in mind when reading the surface table: it pools every tour, and the tours do not play the same surface mix. The surface ordering holds because the method and its possible biases apply identically to all three, but a grass figure drawn mostly from one tier is not directly comparable to a clay figure drawn mostly from another.

Does that show up in tiebreaks?

Directly, and in the same order.

Surface Sets reaching a tiebreak Matches with at least one
Grass 15.91% 31.73%
Hard 12.31% 25.28%
Clay 10.72% 22.52%

This is the same fact told twice. If serve is harder to break, more sets arrive at 6-6, and grass produces about half again as many tiebreaks per set as clay. Two independent measurements — one counting games, one counting sets — put the surfaces in the same order, which is the main reason to believe either.

So does the surface decide matches?

Barely. On the same corpus, the rate at which a player wins after losing the first set is:

Surface Matches Comeback rate
Grass 3,593 17.20%
Clay 47,944 16.79%
Hard 61,751 16.47%

0.73 percentage points, top to bottom. For comparison, the same measurement varies by 3.03 points between tours and by 14.74 points depending on how close the first set was. Surface is the weakest of the three by a wide margin — about a twentieth of the effect of the first-set margin.

That is not a contradiction. Holding serve more often on grass helps both players roughly equally, so it changes the texture of the match — longer hold sequences, more tiebreaks, fewer breaks — without much changing who is ahead. The first-set margin, by contrast, is information about the two players rather than about the court.

How this was measured

Reproducing it

Both numbers come from one endpoint on the Basic ($9.99/mo) tier. Every tape row carries the game score and the server, which is all a hold calculation needs:

import os, requests

BASE = "https://api.livetennisapi.com/api/public/v1"
H = {"X-API-Key": os.environ["LIVE_TENNIS_API_KEY"]}

tape = requests.get(f"{BASE}/history/matches/18953", headers=H, timeout=30).json()

held = played = 0
prev = None
for row in tape.get("states", []):
    if prev and not row.get("is_tiebreak"):
        g, pg = row["games"], prev["games"]          # games per set, current set last
        if sum(g) == sum(pg) + 1 and len(g) == len(pg):
            winner = 1 if g[-1] > pg[-1] else 2      # whoever's game count advanced
            played += 1
            held += (winner == prev["server"])       # the server DURING that game
    prev = row

print(played, held, round(100 * held / played, 1) if played else None)

Note the two details that matter: the game score is an array per set, so compare the last element and only within one set; and the server to credit is the one on the previous row, because by the time the game count advances the serve has already passed to the other player.

Endpoint detail is on the point-by-point history page and the full reference. Tiers and limits: pricing.

Frequently asked questions

How often is serve held on grass, hard and clay?

Across 2,239,440 service games in completed singles matches between January 2023 and September 2026, the server held 74.43% of the time on grass, 69.95% on hard courts and 65.98% on clay. That is a spread of 8.45 percentage points between the fastest and slowest surface. Tiebreak games are excluded, because serve alternates within a tiebreak and so no single player can be said to have held. The figures come from our own point-by-point tape rather than from published match statistics.

Does the surface affect who wins a tennis match?

Much less than people assume. The rate of winning after losing the first set varies by only 0.73 percentage points across grass, clay and hard — 17.20%, 16.79% and 16.47%. The same measurement varies by 3.03 points between tours and by 14.74 points depending on how close the first set was. A faster surface helps both players hold serve roughly equally, so it changes the shape of the match without much changing who is ahead in it.

Why does clay produce fewer tiebreaks than grass?

Because serve is easier to break on clay. The server holds 65.98% of games on clay against 74.43% on grass, so clay sets arrive at 6-6 less often: 10.72% of clay sets reach a tiebreak against 15.91% on grass. Counted per match instead of per set, 22.52% of clay matches contain at least one tiebreak against 31.73% on grass. The two measurements are really one fact — break frequency — observed at two different scales.

How do you calculate hold percentage from point-by-point data?

Walk the tape in order and look for rows where the game score advances by exactly one for one player and is unchanged for the other, within the same set. That row marks a completed game, and it is credited to whoever is shown as serving on the preceding row, because by the time the game count advances the serve has already passed to the other player. Exclude tiebreaks. Two details trip people up: the game score is an array per set, and the server must be read from the previous row.

Are these hold percentages comparable to published tour statistics?

Yes, and that was checked rather than assumed. Measured by tour, this method gives 78.62% for the ATP tour and 64.36% for the WTA tour, against widely published figures of roughly 79% and 64% — two independent benchmarks matched by a calculation tuned to neither. The pooled surface figures are lower than the ATP number because the corpus is mostly ITF and Challenger matches, where serve is held less often: 70.26% for ITF men and 58.93% for ITF women.

Do men hold serve more often than women in tennis?

Substantially, and by more than the surface changes. Across this corpus the server held 78.62% of games on the ATP tour against 64.36% on the WTA tour, a gap of 14.26 percentage points. For comparison, the gap between grass and clay is 8.45 points. The pattern repeats at every tier: 74.10% at Challenger level for men against 60.40% for women, and 70.26% in ITF men's singles against 58.93% in ITF women's. Tiebreak frequency follows the same ordering.

Built with the Live Tennis API — real-time scores, players, odds and model win-probability for ATP, WTA, Challenger and ITF.

API reference SDKs on GitHub Plans from $9.99/mo