wta_rankings
Fetch WTA singles or doubles rankings with player details, points, and movement. Specify type and metric to get an array of ranked players.
Instructions
The WTA rankings — each row is {player:{id, fullName, countryCode, dateOfBirth}, ranking, points, tournamentsPlayed, movement, rankedAt}. Returns a bare ARRAY (not the {pageInfo,content} envelope). REQUIRES type + metric, which must agree: rankSingles+singles or rankDoubles+doubles. Page with page/pageSize (e.g. pageSize=100 for the top 100).
Returns: array of {player:{id, firstName, lastName, fullName, countryCode, dateOfBirth}, ranking, points, tournamentsPlayed, movement, rankedAt}
Example: Top 100 WTA singles rankings {"type": "rankSingles", "metric": "singles", "pageSize": 100}
Auth: none needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 0-based page index. | |
| type | Yes | Ranking type — rankSingles or rankDoubles. Must match `metric`. | |
| metric | Yes | Ranking metric — singles or doubles. Must match `type` (rankSingles↔singles, rankDoubles↔doubles). | |
| pageSize | No | Rows per page (e.g. 100 = top 100). |