Fetch A Player NTRP Rating

Fetch A Player NTRP Rating

Overview

You can lookup a USTA player NTRP rating given a USTA uaid. API will provide latest rating, rating date, rating type and other rating information.

API

You must first retrieve an access token using machine-to-machine method. See USTA Connect - Authentication OKTA for more on how to request a token.

Base URLs

Replace {BASE_URL} with the following value:

PROD: https://api-ustaconnect.usta.com

STAGE: https://stage-api-ustaconnect.usta.com

 

This API can be called to fetch NTRP rating for one UAID at a time.

URI

GET {BASE_URL}/v1/usta-service/customers/<UAID>/ntrp

Path variables

Variable

Type

Required/Optional

Description

Variable

Type

Required/Optional

Description

UAID

String

Required

Player UAID

Responses

Status

Body

Meaning

Status

Body

Meaning

200 - Success

{ "ratingDate": "2025-12-31T00:00:00", "ratingType": "C", "ratingExpiration": "2028-12-31T00:00:00", "ratingYear": 2025, "ntrpRating": 2.0 }

Standard Response.

One player NTRP rating is returned per call.

401 - UNAUTHORIZED

{ "message": "string" }

Indicates that the request requires user authentication information. The client MAY repeat the request with a suitable Authorization header field.

500 Service error

{ "message": "string" }

Unexpected server error


Sample Curl

The following is a sample curl to retrieve a player membership status.

Where:

--header 'Authorization: Bearer eyJraW...

specifies the token that you retrieved using the https://account-ustaconnect.usta.com/oauth2/token endpoint.

curl --location 'https://api-ustaconnect.usta.com/v1/usta-service/customers/<UAID>/ntrp' \ --header 'Authorization: Bearer eyJraW...