Get Calendar Filters

GET/tennis/v2/calendar/{tour_type}/filters
Returns all available filter options for the Advanced Calendar endpoints, including supported years, tournament levels, and court surfaces.

Path Parameter

ParameterRequiredDescription
tour_typeYes
Tour category. Allowed values: atp, wta.
Example Request: CURL
curl --request GET \
	--url 'https://tennis-api-atp-wta-itf.p.rapidapi.com/tennis/v2/calendar/atp/filters' \
	--header 'X-RapidAPI-Host: tennis-api-atp-wta-itf.p.rapidapi.com' \
	--header 'X-RapidAPI-Key: YOUR_RAPIDAPI_KEY'

Get Calendar By Year

GET/tennis/v2/calendar/{tour_type}/{year}
Returns the complete tournament calendar for a specific year, including tournament details, surface, level, prize money, and the matches played during each tournament.

Path Parameter

ParameterRequiredDescription
tour_typeYes
Tour category. Allowed values: atp, wta.
yearYes
Year Value(2026)

Query Parameter

ParameterRequiredDescription
pageNoNo
Page number, 1-indexed. Default: 1
pageSizeNo
Specifies the number of records returned per request. Defaults to 200 if omitted. Maximum allowed value is 200.
Example Request: CURL
curl --request GET \
	--url 'https://tennis-api-atp-wta-itf.p.rapidapi.com/tennis/v2/calendar/atp/2025' \
	--header 'X-RapidAPI-Host: tennis-api-atp-wta-itf.p.rapidapi.com' \
	--header 'X-RapidAPI-Key: YOUR_RAPIDAPI_KEY'

Get Grand Slam Champions Calendar

GET/tennis/v2/calendar/{tour_type}/grand-slam-champions
Returns the historical calendar of Grand Slam tournaments along with tournament information and participating players for each edition.

Path Parameter

ParameterRequiredDescription
tour_typeYes
Tour category. Allowed values: atp, wta.

Query Parameter

ParameterRequiredDescription
pageNoNo
Page number, 1-indexed. Default: 1
pageSizeNo
Specifies the number of records returned per request. Defaults to 200 if omitted. Maximum allowed value is 200.
Example Request: CURL
curl --request GET \
	--url 'https://tennis-api-atp-wta-itf.p.rapidapi.com/tennis/v2/calendar/atp/grand-slam-champions' \
	--header 'X-RapidAPI-Host: tennis-api-atp-wta-itf.p.rapidapi.com' \
	--header 'X-RapidAPI-Key: YOUR_RAPIDAPI_KEY'