Get All Potential Fixtures
GET
Returns all potential upcoming fixtures between players based on the current tournament draw. This endpoint helps identify possible future matchups before they are officially confirmed, making it useful for predictions, tournament analysis, and matchup planning. Only potential pairings are included; no match results or live data are returned./tennis/v2/potential-fixtures/{tour_type}Path Parameter
| Parameter | Required | Description |
|---|---|---|
tour_type | Yes | Tour category. Allowed values: atp, wta. |
Query Parameter
| Parameter | Required | Description |
|---|---|---|
pageSize | No | Results per page. Default: 10. Example: pageSize=10. |
pageNo | No | Page number, 1-indexed. Default: 1. Example: pageNo=1. Use hasNextPage in the response to check for more pages. |
Get Potential Fixtures By Tournament
GET
Retrieves all potential upcoming matchups for a specific tournament based on the current tournament draw. The response includes every possible pairing that can still occur in future rounds, along with the corresponding round and draw position./tennis/v2/potential-fixtures/{tour_type}/tournament/{tour_id_or_name}Path Parameter
| Parameter | Required | Description |
|---|---|---|
tour_type | Yes | Tour category. Allowed values: atp, wta. |
tour_id_or_name | Yes | Tournament ID or exact tournament name. Either value can be used to identify the tournament. |
Query Parameter
| Parameter | Required | Description |
|---|---|---|
pageSize | No | Results per page. Default: 10. Example: pageSize=10. |
pageNo | No | Page number, 1-indexed. Default: 1. Example: pageNo=1. Use hasNextPage in the response to check for more pages. |
Get Potential Fixtures By Player
GET
Returns all potential upcoming fixtures for a specific player based on the current tournament draw. The response includes every possible opponent the player may face in future rounds, along with the projected round and draw position. This endpoint is useful for analyzing a player's possible tournament path and upcoming match scenarios./tennis/v2/potential-fixtures/{tour_type}/player/{player_id_or_name}Path Parameter
| Parameter | Required | Description |
|---|---|---|
tour_type | Yes | Tour category. Allowed values: atp, wta. |
player_id_or_name | Yes | Can be either the player's name or numeric player ID. |
Query Parameter
| Parameter | Required | Description |
|---|---|---|
pageSize | No | Results per page. Default: 10. Example: pageSize=10. |
pageNo | No | Page number, 1-indexed. Default: 1. Example: pageNo=1. Use hasNextPage in the response to check for more pages. |
Get Active Players From Potential Fixtures
GET
Returns a paginated list of players who are currently active in tournament draws and have potential upcoming fixtures. Each record includes the player's name, the tournament they are competing in, the tournament location, and the event year. This endpoint is useful for discovering players with possible future matchups across all active tournaments./tennis/v2/potential-fixtures/{tour_type}/active-playersPath Parameter
| Parameter | Required | Description |
|---|---|---|
tour_type | Yes | Tour category. Allowed values: atp, wta. |
Query Parameter
| Parameter | Required | Description |
|---|---|---|
pageSize | No | Results per page. Default: 10. Example: pageSize=10. |
pageNo | No | Page number, 1-indexed. Default: 1. Example: pageNo=1. Use hasNextPage in the response to check for more pages. |