Skip to main content
If you are building anything with professional padel data, you have two real options: stand up your own scraper across the official sources, or consume a single normalized API. Both can produce a working prototype. The difference shows up in month two, when the data has to be right every morning, a player has quietly become two records, and you also have a product to ship. This guide is a technical comparison of the two paths. It is also a proposal about how to split the work: we keep the data correct and add what it does not come with, and you spend your time on the product your users actually see.

The hidden cost of “I’ll just scrape it”

A first scraper for a single source is a weekend project. The hard part is not writing it. It is keeping it useful for a year. Keeping one alive tends to look like this:
  • Sources change with no notice, and failures are silent. An empty list looks exactly like “nothing happened today”. You find out from a user.
  • Identity is not stable. "Juan Lebrón", "Juan Lebron" and "J. Lebrón Chincoa" are one player, and three without entity resolution. Tournaments rename, merge and get cancelled, so keying by name or slug means permanent reconciliation.
  • Live data is hostile to polling. Poll fast and you get blocked, poll slowly and the scoreboard is stale.
  • None of it is your product. Every hour spent keeping the data alive is an hour not spent on the app your users came for, and it does not stop needing attention when your sprint ends.
None of this is fundamentally hard. It is just a list of small things that need to keep working forever. Behind the API, none of them reach you: the dataset arrives already reconciled, and what you do with it is the only part left.

Side-by-side comparison


Why normalization is the moat

The biggest gap between a scraper and this API is normalization: the work of turning three different sources into a single coherent dataset. Cross-source unified schema. A tournament from Premier Padel and a tournament from the legacy WPT archive come back with the same field names, the same enum values for level and status, and the same structure for matches, players, and pairs. One schema covers a 2023 WPT 1000 and a current P1. Stable IDs and canonical redirects. Numeric IDs are the primary key. When reality changes, the API tells you:
  • A tournament gets renamed → same ID.
  • Two tournaments merge → the deprecated one returns 302 pointing at the canonical one.
  • Two player records turn out to be the same person → the deprecated player returns 302, and match history is consolidated under the surviving ID.
  • A tournament is cancelled → it disappears from list endpoints but remains addressable by ID with status: "cancelled".
Your sync job follows redirects and updates a foreign key. Compare to maintaining a fuzzy-matching layer over a stream of name strings. See Data Synchronization for the recommended sync strategy. Computed endpoints. Some of the most interesting questions in padel (head-to-head records, pair chemistry, win rate in finals, season-on-season form) are aggregations over the entire match history, not facts you can scrape. The API ships them as endpoints:

Enriched data: the part we compute

Results, draws and calendars are public information. A determined pipeline eventually assembles a version of them, and if that is all your product needs, you do not need us. The enriched data is the part that is not public: values computed by our own models over the full match history, on every player and every match we cover. It arrives inline, in the same objects as everything else:
Part of that response was announced by a tournament and part of it was computed here. Same object, same request, same token: no enrichment endpoint to call separately and no second plan to buy. This is the other half of the split. Keeping a dataset correct is a full time job, and the upside of somebody doing it full time is that models can be built on top of it: that is where strength ratings, win probabilities, watchability and schedule estimates come from, each documented with its method and its measured accuracy.

Real-time without the polling tax

If your product shows live scores, scraping is where the gap widens fastest. Aggressive polling gets you blocked; gentle polling makes the scoreboard look broken. The API exposes a Pusher WebSocket channel per match, pushed on every point, with the same JSON shape as the REST live endpoint. Nothing to poll and no backoff to tune. See the WebSockets guide for the full client setup.

When scraping does make sense

To be fair: rolling your own pipeline is rational when you need a specific data point that is not exposed by any API, and you are willing to own the pipeline forever for the sake of that one field. If what you need is tournaments, draws, matches, results, players, pairs, point-by-point live data, and aggregated stats across FIP, Premier Padel, and WPT, the API already covers it, with the enriched layer on top. What is left is your part.

Get started

Your First API Call

Authenticate and run your first request in under a minute.

Data Synchronization

Keep a local copy in sync, including redirects and merges.

WebSockets

Push live point-by-point updates without polling.