Advanced API
Advanced API Overview
The Advanced API provides a richer, deeper set of tennis data endpoints beyond the core API. It covers detailed player analytics, live match tracking, match predictions, advanced H2H breakdowns, full season calendars, potential fixture combinations, and global search β all accessible through the same RapidAPI subscription.
Same authentication
All Advanced API endpoints use the exact same
X-RapidAPI-Key and X-RapidAPI-Host headers as the core API. No additional credentials are required.
Base URL
All Advanced API endpoints share the following base URL on the same host:
Base URL
https://tennis-api-atp-wta-itf.p.rapidapi.com/tennis/v2/ms-api/
Authentication
| Header | Value |
|---|---|
X-RapidAPI-Key | Your RapidAPI subscription key |
X-RapidAPI-Host | tennis-api-atp-wta-itf.p.rapidapi.com |
Tour Types
Most endpoints require a {type} path parameter specifying the tour:
| Value | Tour |
|---|---|
atp | Men's tour (ATP) |
wta | Women's tour (WTA) |
Player name format
Endpoints that accept a
Example:
{name} path parameter expect the player name in lastname-firstname lowercase hyphenated format.Example:
djokovic-novak, swiatek-iga, alcaraz-carlos
Available Modules
Profile
Detailed player profiles, season statistics, surface win rates, performance breakdowns, match history, finals records, and player search.
H2H Advanced
Deep head-to-head analytics β aggregated stats, full match history, surface breakdown, rivalries, upcoming meetings, and recent event data.
Upcoming & Live
Upcoming scheduled matches with odds, AI-powered match predictions, live event feeds, live score tracking, and point-by-point statistics.
Tournament Advanced
Tournament draws, points, seeds, past champions, all-time most victories, full season calendars, Grand Slam history, and potential fixture combinations.
Rankings & Search
Advanced ranking lists with country filters, Top 10 snapshots, Top 500 name lookup, full ranking history per player, and full-text search across players and tournaments.
Module Summary
| Module | Base Path | Endpoints |
|---|---|---|
| Profile | .../ms-api/profile/ | 13 |
| H2H Advanced | .../ms-api/h2h/ | 15 |
| Upcoming & Live | .../ms-api/upcoming/ + live-events/ + live-score/ + pbp-stat/ | 10 |
| Tournament Advanced | .../ms-api/tournament/ + calendar/ + potential-fixtures/ | 12 |
| Rankings & Search | .../ms-api/ranking/ + search/ | 7 |
Quick Example
cURL
curl --request GET \
--url 'https://tennis-api-atp-wta-itf.p.rapidapi.com/tennis/v2/ms-api/profile/alcaraz-carlos' \
--header 'X-RapidAPI-Key: YOUR_RAPIDAPI_KEY' \
--header 'X-RapidAPI-Host: tennis-api-atp-wta-itf.p.rapidapi.com'