Skip to main content
GET
/
standings
Rankings
curl --request GET \
  --url https://v1.tennis.sportsapipro.com/standings \
  --header 'x-api-key: <api-key>'
{
  "standings": [
    {
      "competitor": {
        "id": 123,
        "name": "<string>",
        "score": "<string>",
        "imageUrl": "<string>"
      },
      "position": 123,
      "points": 123
    }
  ]
}

Overview

Returns current rankings for ATP and WTA tours, as well as tournament-specific standings and draws.

Code Examples

# ATP Rankings
curl -X GET "https://v1.tennis.sportsapipro.com/standings?competitions=6878" \
  -H "x-api-key: YOUR_API_KEY"

# WTA Rankings  
curl -X GET "https://v1.tennis.sportsapipro.com/standings?competitions=6881" \
  -H "x-api-key: YOUR_API_KEY"

Key Competition IDs

RankingsCompetition ID
ATP Singles6878
WTA Singles6881

Response Structure

standings
array
Array of ranking entries with player info and points
seasonFilters
array
Available seasons for historical rankings
Use withSeasonsFilter=true to get available historical ranking periods.

Authorizations

x-api-key
string
header
required

Your SportsAPI Pro API key

Query Parameters

competitions
integer
required

Competition ID (e.g., 6878 for ATP, 6881 for WTA)

Example:

6878

seasonNum
integer

Season number for historical rankings

Response

200 - application/json

Rankings retrieved successfully

standings
object[]