Skip to main content

polymarket-tennis — Polymarket tennis trading toolkit

The live-data layer for Polymarket tennis trading: discover tennis event markets, match them to live tennis scores, and watch market prices against the real match state — score line, server, break-point flag — in one joined view.

Disclosure: this toolkit is built and maintained by the team behind the Live Tennis API. It joins Polymarket's public market data with our live-score feed, so this is vendor-authored tooling — judge accordingly.

Observe-only by design. This package reads public market data and live scores. It contains no order execution, no wallet or key handling, and no strategy advice; execution is out of scope, permanently.

Cincinnati Open: Jiri Lehecka vs Arthur Fils  [atp-lehecka-fils-2026-08-17]
  market: Jiri Lehecka 0.095 | Arthur Fils 0.905  (as of 12s ago)
  live:   Jiri Lehecka vs Arthur Fils  4-6 3-4 (15-40)  serving: Jiri Lehecka  [BREAK POINT]  (as of 8s ago)

Find tennis markets on Polymarket

The discovery module finds current tennis markets via Polymarket's public Gamma API (keyless): the tennis tag, per-match events (atp-lehecka-fils-2026-08-17), futures, doubles; normalized to plain Python objects (question, outcomes, prices, volume, end date).

Tennis is a large, active category on Polymarket: on 2026-08-18 we counted 400+ open singles moneyline markets on the Gamma API across ATP, WTA, Challenger and ITF events, plus set-winner, games over/under and futures markets alongside them.

pmtennis discover --matches-only --moneyline-only

Match a Polymarket tennis market to a live match

The matching module pairs a market with a Live Tennis API match/fixture using player-name + date heuristics with an explicit confidence score. Handles reversed name order ("Alcaraz vs Sinner" / "Sinner vs Alcaraz"), diacritics ("Báez" = "Baez"), shared surnames, and retirement/walkover wording. On ambiguity it returns None — it never guesses silently. An explicit match-id override is always available.

Matching semantics, precisely:

  • Confidence comes from folded full-name agreement (diacritics stripped, punctuation collapsed), tried in both orientations, gated by the market slug's date vs the match's scheduled date (±1 day; matches often start after midnight UTC).
  • Two near-equal candidates → None. One player agreeing → None. A date disagreeing by more than a day → None.
  • Doubles markets are rejected in v0.1 (team-name matching is a separate problem); use --match-id/override_match_id explicitly if you need one.
  • Break-point flag: receiver at AD, or receiver at 40 while the server is at 0/15/30; never in tiebreaks; False whenever server or points are null (completed matches carry null points).

Watch market prices against live scores

The join module builds a LiveMarketView: one snapshot holding the market question and outcome prices next to the live score line, server, break-point flag, and set/game state, with staleness timestamps for both feeds.

Install

pip install "polymarket-tennis @ git+https://github.com/livetennisapi/polymarket-tennis"

Python 3.10+. Single runtime dependency: httpx.

Quickstart

# 1. list current tennis markets — keyless, Gamma only
pmtennis discover --matches-only --moneyline-only

# 2. get a free Live Tennis API key (https://livetennisapi.com/subscribe/free)
export LIVETENNIS_API_KEY=ltapi_...

# 3. inspect the matching decision for one market
pmtennis match atp-lehecka-fils-2026-08-17

# 4. watch market price vs live match state, one poll per minute
pmtennis watch atp-lehecka-fils-2026-08-17

As a library:

from polymarket_tennis import (
    GammaClient, LiveTennisClient,
    discover_tennis_markets, match_market, build_view,
)

with GammaClient() as gamma, LiveTennisClient() as lta:
    markets = discover_tennis_markets(gamma, market_types={"moneyline"},
                                      matches_only=True)
    candidates = lta.live_matches() + lta.fixtures()
    for market in markets:
        decision = match_market(market, candidates)
        if decision is None:
            continue  # ambiguous or no live counterpart — never guessed
        view = build_view(market, decision.match)
        print(view.render())

Build a Polymarket tennis trading bot on top of this

To be clear about the boundary: this toolkit is the data layer, not a bot. It never places orders and never will. What it gives a Polymarket tennis trading bot is the part that is genuinely fiddly — reliable market discovery, market↔match identity resolution that refuses to guess, and a joined market-price/live-score snapshot with staleness timestamps — so your own code can focus on whatever decisions it makes. Everything downstream of the LiveMarketView (signals, execution, risk) is yours to build, with Polymarket's own official interfaces, and none of it lives here.

Free-tier budget math (honest numbers)

The Live Tennis API free tier allows 30 requests/minute and 100 requests/day and includes live scores (score/server/state), players (with each player's own current ranking), fixtures, and usage.

pmtennis watch spends 1 Live Tennis API request per poll (the market price comes from Gamma, which is keyless and doesn't touch your quota):

cadence requests/hour free-key watching per day
60 s (default) 60 ~100 minutes
300 s 12 ~8 hours

So the free tier comfortably covers developing, testing, and following a handful of tracked matches at a gentle cadence — it is not sized for continuous fast polling of many matches. Paid tiers add completed-match history and point-by-point (Basic), match events, market prices and bulk packages (Pro), and win probability and in-play stats (Ultra) — details at livetennisapi.com.

Note on price data: all market prices in this toolkit come from Polymarket's public Gamma API. The Live Tennis API's own market-prices and win-probability fields are paid-tier features and are not required by anything here.

FAQ

Can you trade tennis on Polymarket? Yes — tennis event markets exist and are numerous. On 2026-08-18 we counted 400+ open singles moneyline markets on Polymarket's public Gamma API across ATP, WTA, Challenger and ITF, alongside set-winner, games over/under and futures markets. Trading itself happens through Polymarket's own official interfaces; this toolkit only observes the markets.

Is there a Polymarket tennis API? Polymarket's public Gamma API exposes tennis events and markets keyless — no account needed to read prices. This toolkit wraps that for the tennis category and pairs it with the Live Tennis API for the live-score side.

Does this place trades? No. It is observe-only: no order execution, no wallet or key handling, no strategy advice. Execution is permanently out of scope.

What data does the free tier cover? The Live Tennis API free tier (30 req/min, 100 req/day, no card) covers live scores with score/server/break-point state, players including each player's own current ranking, fixtures, and usage. That is everything this toolkit needs; the paid tiers listed above are optional extras.

Tests

Fixture-driven, zero network: the Gamma fixtures are trimmed captures of real Polymarket payloads (Cincinnati Open, August 2026); the Live Tennis API fixtures are constructed to the published OpenAPI schema. See tests/fixtures/README.md for exact provenance.

pip install -e ".[dev]"
ruff check src tests && pytest

License

MIT — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

polymarket_tennis-0.1.0.tar.gz (33.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

polymarket_tennis-0.1.0-py3-none-any.whl (22.3 kB view details)

Uploaded Python 3

File details

Details for the file polymarket_tennis-0.1.0.tar.gz.

File metadata

  • Download URL: polymarket_tennis-0.1.0.tar.gz
  • Upload date:
  • Size: 33.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for polymarket_tennis-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1f85c57b7f1a1bd85cd159ef372481a066e1716c971efef67053c0cc8a9d1791
MD5 efdc7dbc00c7ced877ff01ee06b0220e
BLAKE2b-256 71f7106861778eb6294935376e0dabeecf5e09c409a7acb38b1ff44edf984c80

See more details on using hashes here.

Provenance

The following attestation bundles were made for polymarket_tennis-0.1.0.tar.gz:

Publisher: publish.yml on livetennisapi/polymarket-tennis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polymarket_tennis-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for polymarket_tennis-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4c9ad596f7761b580bc0f14713727fc31f3950ee6fe02db077c0b8002e66a8db
MD5 1d3042fede27629cc6aed699548290fa
BLAKE2b-256 02cdd41ad24e9c0d0467c5c338e5fba088cc74b6d0c1c0f76eae6b8810ce1a5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for polymarket_tennis-0.1.0-py3-none-any.whl:

Publisher: publish.yml on livetennisapi/polymarket-tennis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page