UTR has changed their endpoint to https://app.universaltennis.com. Be sure to replace that in all of the below examples. In addition, you may use the "JWT" cookie from your user session as a bearer token to authenticate requests.

Profile

Profile information including UTR, location, etc.

GET https://www.myutr.com/api/v1/player/{user_id}

Parameter Type Required? Description
User ID Integer Required The User ID can be obtained using a player search or from a profile URL on the Universal Tennis website.

{
  "eventViewModel": null,
  "id": "3478",
  "firstName": "Novak",
  "lastName": "Djokovic",
  "gender": "M",
  "city": null,
  "state": null,
  "singlesUtr": 16.16,
  "ratingStatusSingles": "Rated",
  "ratingProgressSingles": "100",
  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
  "doublesUtr": 14.93,
  "ratingStatusDoubles": "Rated",
  "ratingProgressDoubles": "100",
  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
  "importSource": null,
  "nationality": "SRB",
  "myUtrSingles": 16.41,
  "myUtrStatusSingles": "Unrated",
  "myUtrDoubles": 11.61,
  "myUtrStatusDoubles": "Unrated",
  "memberId": null
}

Results

Fetches matches that count for a player's UTR.

GET https://www.myutr.com/api/v1/player/{user_id}/results

Parameter Type Required? Description
User ID Integer Required The User ID can be obtained using a player search or from a profile URL on the Universal Tennis website.
Year Integer Optional Use ?year={year} to filter results by a certain year. You may also use ?year=last to get the latest results.
Type String Optional If not included in the request, singles results will be displayed. Valid values are singles and doubles.
resultType String Optional If not included in the request, all results will be displayed. Valid values are sanctioned and myutr.

{
  "wins": 58,
  "losses": 14,
  "withdrawls": 0,
  "events": [
    {
      "id": 903854,
      "name": "ATP Tokyo, Japan",
      "isTms": false,
      "timeZone": null,
      "startDate": "2019-09-28T00:00:00",
      "endDate": "2019-10-06T00:00:00",
      "draws": [
        {
          "id": 4345548,
          "tmsId": null,
          "name": "Men's Singles Main Draw",
          "teamType": "Singles",
          "gender": "Male",
          "results": [
            {
              "date": "2019-10-01T06:10:00",
              "id": 17730479,
              "clubIds": [],
              "players": {
                "winner1": {
                  "id": "3478",
                  "firstName": "Novak",
                  "lastName": "Djokovic",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 16.16,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 14.93,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "SRB",
                  "myUtrSingles": 16.41,
                  "myUtrStatusSingles": "Unrated",
                  "myUtrDoubles": 11.61,
                  "myUtrStatusDoubles": "Unrated",
                  "memberId": null
                },
                "winner2": null,
                "loser1": {
                  "id": "95506",
                  "firstName": "Alexei",
                  "lastName": "POPYRIN",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 15.28,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 14.66,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "AUS",
                  "myUtrSingles": 15.28,
                  "myUtrStatusSingles": "Rated",
                  "myUtrDoubles": 14.66,
                  "myUtrStatusDoubles": "Rated",
                  "memberId": null
                },
                "loser2": null
              },
              "videos": null,
              "round": {
                "id": 6,
                "code": "32",
                "name": "Round of 32",
                "size": 32,
                "number": null
              },
              "sourceType": "sanctioned",
              "completionType": "winnercompleted",
              "outcome": "completed",
              "isWinner": true,
              "playerPostedResult": false,
              "finalized": true,
              "submittingMemberId": 0,
              "excludeFromRating": false,
              "actions": {
                "delete": {
                  "allowed": false
                },
                "edit": {
                  "allowed": false
                },
                "accept": {
                  "allowed": false
                },
                "reject": {
                  "allowed": false
                },
                "resendInvite": {
                  "allowed": false
                }
              },
              "isRejected": false,
              "score": {
                "1": {
                  "winner": 6,
                  "loser": 4,
                  "tiebreak": null,
                  "winnerTiebreak": null
                },
                "2": {
                  "winner": 6,
                  "loser": 2,
                  "tiebreak": null,
                  "winnerTiebreak": null
                }
              },
              "winner1Status": null,
              "winner2Status": null,
              "loser1Status": null,
              "loser2Status": null
            }
          ]
        }
      ],
      "results": []
    }
  ],
  "winLossString": "58 - 14 ",
  "utrRating": {
    "show": true,
    "rating": "16.16",
    "ratingString": "UTR"
  },
  "myUtrRating": {
    "show": false,
    "rating": "16.41",
    "ratingString": "UTR (P)"
  }
}

Events

Gets past, current, and future events of a player. This will only display "UTR" events, tournaments that use the UTR platform.

GET https://www.myutr.com/api/v1/player/{user_id}/events

Parameter Type Required? Description
User ID integer Required The User ID can be obtained using a player search or from a profile URL on the Universal Tennis website.

[
  {
    "id": 5449,
    "name": "Nike Tennis Camp at University of North Texas Session 4",
    "club": {
      "id": 1697,
      "name": "University of North Texas - Women",
      "private": false,
      "statusType": null,
      "sanctioned": false,
      "paymentsEnabled": false,
      "verificationApplicationStatus": null,
      "referralCode": null,
      "tierTypeId": 0,
      "tierType": {
        "id": 6,
        "name": "Pro College",
        "maxOwners": 2,
        "maxMembers": 0,
        "maxOrganizers": 4,
        "enablePayments": true,
        "verificationAllowed": true,
        "canRunEvents": true,
        "canPostScores": false,
        "isSearchable": false,
        "isCollege": true,
        "isHighSchool": false,
        "permissionedTmsEventTypes": null
      }
    },
    "currency": null,
    "phone": "+18006453226",
    "phoneCountryCode": "US",
    "email": "tennis@ussportscamps.com",
    "photoUrl": "5449/images/banner/deb6346f-d987-4f4f-993c-5cbb5eb6e00e.jpg",
    "details": "Nike Tennis Camp at the University of North Texas excited to offer UTR and Verified UTR Events! We have partnered with Universal Tennis to provide level based UTR match play throughout our camps. In the afternoons, campers will have the opportunity to play matches which will be recorded for advancement under the UTR system. In addition, once a week, campers will have the option to participate in a “VERIFIED UTR EVENT” which will count towards their Verified UTR. \n\nIn order to participate, must first register for camp –https://www.ussportscamps.com/tennis/nike/university-of-north-texas-nike-tennis-camp",
    "utrType": {
      "id": 2,
      "value": "sanctioned",
      "label": "Verified UTR Event",
      "description": "Must follow Verified Event Rules to count for Verified UTR rating."
    },
    "eventType": {
      "id": 1,
      "value": "tournament",
      "label": "Tournament",
      "description": "Create draws types such as round robins, compass draws, and traditional formats"
    },
    "surfaceType": null,
    "eventPermissionType": {
      "id": 1,
      "value": "public",
      "label": "Public",
      "description": "Anyone can view and register for this event."
    },
    "published": true,
    "playerVisibility": false,
    "flatFee": 0,
    "percentFee": 0.1,
    "verificationFee": 0,
    "passwordEnabled": true,
    "eventState": {
      "registrationState": {
        "id": 3,
        "value": "registration_closed",
        "label": "Registration Closed",
        "description": ""
      },
      "id": 5,
      "value": "completed",
      "label": "Event Completed",
      "description": ""
    },
    "priceRange": "Free Event",
    "priceRangeShort": "Free Event",
    "eventLocations": [
      {
        "eventLocationType": null,
        "locationId": null,
        "latLng": [
          33.2148412,
          -97.13306829999999
        ],
        "display": "Denton, TX",
        "googleFormattedName": "Denton, TX, USA",
        "googlePlaceId": null,
        "placeName": null,
        "streetAddress": "",
        "cityStateZip": "Denton, TX",
        "cityName": "Denton",
        "cityAbbr": "Denton",
        "stateName": "Texas",
        "stateAbbr": "TX",
        "countryName": "United States",
        "countryCode2": "US",
        "countryCode3": "USA",
        "countryIoc": "USA"
      }
    ],
    "eventSchedule": {
      "timeZone": {
        "id": 43,
        "value": "America/Chicago",
        "label": "America/Chicago",
        "description": "",
        "offset": "-05:00",
        "labelLong": "America/Chicago (-05:00)"
      },
      "registrationStartUtc": "2019-05-07T12:00:00",
      "registrationEndUtc": "2019-07-23T01:00:00",
      "eventStartUtc": "2019-07-22T13:00:00",
      "eventEndUtc": "2019-07-24T22:00:00",
      "drawPublishedUtc": null,
      "maxEventEndUtc": null,
      "maxResultDateUtc": null,
      "maxPostScoreDateUtc": null,
      "eventDatesShort": "Jul 22 - 24, 2019",
      "eventDatesLong": "Mon, Jul 22 - Wed, Jul 24",
      "eventStartShort": "Jul 22",
      "eventEndShort": "Jul 24",
      "eventStartMonth": "Jul",
      "eventEndMonth": "Jul",
      "eventStartDate": "22",
      "eventStartYear": "2019",
      "eventEndYear": "2019",
      "eventEndDate": "24"
    },
    "eventDirectors": [
      {
        "memberId": 10204,
        "memberEmail": "chaseh1988@yahoo.com",
        "firstName": "Chase",
        "lastName": "Hardin",
        "displayName": "Chase Hardin",
        "eventDirectorRole": {
          "id": 1,
          "value": "admin",
          "label": "Admin",
          "description": "Can modify any aspect of the event."
        },
        "playerProfileImages": {
          "default": null,
          "thumbnail": {
            "oneX": null,
            "twoX": null,
            "threeX": null
          },
          "card": {
            "oneX": null,
            "twoX": null,
            "threeX": null
          },
          "profile": {
            "oneX": null,
            "twoX": null,
            "threeX": null
          },
          "icon": {
            "oneX": null,
            "twoX": null,
            "threeX": null
          }
        },
        "playerId": null
      },
      {
        "memberId": 165111,
        "memberEmail": "wshpiz@ussportscamps.com",
        "firstName": "Nike ",
        "lastName": "Tennis Camps",
        "displayName": "Nike  Tennis Camps",
        "eventDirectorRole": {
          "id": 1,
          "value": "admin",
          "label": "Admin",
          "description": "Can modify any aspect of the event."
        },
        "playerProfileImages": {
          "default": null,
          "thumbnail": {
            "oneX": null,
            "twoX": null,
            "threeX": null
          },
          "card": {
            "oneX": null,
            "twoX": null,
            "threeX": null
          },
          "profile": {
            "oneX": null,
            "twoX": null,
            "threeX": null
          },
          "icon": {
            "oneX": null,
            "twoX": null,
            "threeX": null
          }
        },
        "playerId": null
      }
    ],
    "eventClubJoinRequestType": null,
    "currentMember": {
      "isPlaying": true,
      "clubMemberRole": null
    },
    "registeredCount": 85,
    "paidDivisions": false,
    "eventTours": [],
    "photoImages": {
      "default": "5449/images/banner/deb6346f-d987-4f4f-993c-5cbb5eb6e00e.jpg",
      "banner": {
        "oneX": "5449/images/banner/deb6346f-d987-4f4f-993c-5cbb5eb6e00e.jpg?size=1X&type=banner",
        "twoX": "5449/images/banner/deb6346f-d987-4f4f-993c-5cbb5eb6e00e.jpg?size=2X&type=banner",
        "threeX": "5449/images/banner/deb6346f-d987-4f4f-993c-5cbb5eb6e00e.jpg?size=3X&type=banner"
      },
      "dashboard": {
        "oneX": "5449/images/banner/deb6346f-d987-4f4f-993c-5cbb5eb6e00e.jpg?size=1X&type=dashboard",
        "twoX": "5449/images/banner/deb6346f-d987-4f4f-993c-5cbb5eb6e00e.jpg?size=2X&type=dashboard",
        "threeX": "5449/images/banner/deb6346f-d987-4f4f-993c-5cbb5eb6e00e.jpg?size=3X&type=dashboard"
      }
    },
    "hasPrizeMoney": false,
    "prizeMoney": null,
    "prizeMoneyText": null,
    "prizeMoneyTextShort": null,
    "gender": "Co-ed",
    "utrRange": "1.0 - 16.0",
    "teamType": "Singles"
  }
]

Clubs

Shows what clubs a player is in including high schools and colleges.

GET https://www.myutr.com/api/v1/player/{user_id}/clubs

Parameter Type Required? Description
User ID integer Required The User ID can be obtained using a player search or from a profile URL on the Universal Tennis website.


Statistics

Shows historical data and other statistics of a user.

GET https://www.myutr.com/api/v1/player/{user_id}/stats

Parameter Type Required? Description
User ID Integer Required The User ID can be obtained using a player search or from a profile URL on the Universal Tennis website.
Type String Required Acceptable values are singles and doubles.
resultType String Required Acceptable values are verified and myutr.
Months Integer Required Gets statistics from 6 or 12 months.
fetchAllResults Boolean Required Acceptable values are true or false.

{
  "title": "verified singles stats - Last 6 Months",
  "subtitle": "May 2019 - October 2019",
  "monthsCount": 6,
  "currentRating": 16.16,
  "ratingCircle": {
    "singlesUtr": 16.16,
    "ratingStatusSingles": "Rated",
    "ratingProgressSingles": 100
  },
  "winsCount": 25,
  "lossesCount": 4,
  "recordWinPercentage": "86.2%",
  "notableMatch": {
    "eventViewModel": null,
    "date": "2019-07-14T13:00:00",
    "id": 16705659,
    "clubIds": [],
    "players": {
      "winner1": {
        "eventViewModel": null,
        "id": "3478",
        "firstName": "Novak",
        "lastName": "Djokovic",
        "gender": "M",
        "city": null,
        "state": null,
        "singlesUtr": 16.16,
        "ratingStatusSingles": "Rated",
        "ratingProgressSingles": "100",
        "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
        "doublesUtr": 14.93,
        "ratingStatusDoubles": "Rated",
        "ratingProgressDoubles": "100",
        "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
        "importSource": null,
        "nationality": "SRB",
        "myUtrSingles": 16.41,
        "myUtrStatusSingles": "Unrated",
        "myUtrDoubles": 11.61,
        "myUtrStatusDoubles": "Unrated",
        "memberId": null
      },
      "winner2": null,
      "loser1": {
        "eventViewModel": null,
        "id": "3456",
        "firstName": "Roger",
        "lastName": "Federer",
        "gender": "M",
        "city": null,
        "state": null,
        "singlesUtr": 16.14,
        "ratingStatusSingles": "Rated",
        "ratingProgressSingles": "100",
        "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
        "doublesUtr": 0,
        "ratingStatusDoubles": "Unrated",
        "ratingProgressDoubles": "0",
        "ratingStatusImgageDoubles": null,
        "importSource": null,
        "nationality": null,
        "myUtrSingles": 16.14,
        "myUtrStatusSingles": "Rated",
        "myUtrDoubles": 0,
        "myUtrStatusDoubles": "Unrated",
        "memberId": null
      },
      "loser2": null
    },
    "videos": null,
    "round": {
      "id": 1,
      "code": "F",
      "name": "Finals",
      "size": 2,
      "number": null
    },
    "sourceType": null,
    "completionType": null,
    "outcome": "completed",
    "isWinner": true,
    "playerPostedResult": false,
    "finalized": true,
    "submittingMemberId": 0,
    "excludeFromRating": false,
    "actions": {
      "delete": {
        "allowed": false
      },
      "edit": {
        "allowed": false
      },
      "accept": {
        "allowed": false
      },
      "reject": {
        "allowed": false
      },
      "resendInvite": {
        "allowed": false
      }
    },
    "isRejected": false,
    "score": {
      "1": {
        "winner": 7,
        "loser": 6,
        "tiebreak": 5,
        "winnerTiebreak": 7
      },
      "2": {
        "winner": 1,
        "loser": 6,
        "tiebreak": null,
        "winnerTiebreak": null
      },
      "3": {
        "winner": 7,
        "loser": 6,
        "tiebreak": 4,
        "winnerTiebreak": 7
      },
      "4": {
        "winner": 4,
        "loser": 6,
        "tiebreak": null,
        "winnerTiebreak": null
      },
      "5": {
        "winner": 13,
        "loser": 12,
        "tiebreak": 3,
        "winnerTiebreak": 7
      }
    },
    "winner1Status": null,
    "winner2Status": null,
    "loser1Status": null,
    "loser2Status": null
  },
  "notableMatchEventName": "Wimbledon",
  "playerFirstInitialLastName": "N. Djokovic",
  "playerIsPro": true,
  "startRating": 16,
  "minRating": 16.11,
  "maxRating": 16.26,
  "ratingTrend": {
    "rating": 16,
    "ratingDifference": 0.16000000000000014,
    "changeDirection": "down"
  },
  "ratingTrendChart": {
    "minRating": 16.110369790681222,
    "maxRating": 16.26,
    "chartTicksPerMonth": 20,
    "months": [
      {
        "month": {
          "name": "May",
          "abbr": "MAY"
        },
        "ratings": [
          {
            "index": 20,
            "rating": 16.23
          },
          {
            "index": 25,
            "rating": 16.23
          },
          {
            "index": 30,
            "rating": 16.23
          },
          {
            "index": 35,
            "rating": 16.21
          }
        ],
        "minRating": 16.21,
        "maxRating": 16.25,
        "startRating": 16.23,
        "endRating": 16.23,
        "results": [
          {
            "index": 24,
            "rating": 15.55,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Tue May 7 Win vs. T. Fritz (15.56) 6-4, 6-2"
              }
            ]
          },
          {
            "index": 27,
            "rating": 15.9,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Sat May 11 Win vs. D. Thiem (15.91) 7-6(2), 7-6(4)"
              }
            ]
          },
          {
            "index": 25,
            "rating": 15.4,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Thu May 9 Win vs. J. Chardy (15.42) 6-1, 7-6(2)"
              }
            ]
          },
          {
            "index": 30,
            "rating": 15.55,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Thu May 16 Win vs. D. Shapovalov (15.55) 6-1, 6-3"
              }
            ]
          },
          {
            "index": 30,
            "rating": 15.25,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Thu May 16 Win vs. P. Kohlschreiber (15.25) 6-3, 6-0"
              }
            ]
          },
          {
            "index": 31,
            "rating": 15.9,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Fri May 17 Win vs. J. Del Potro (15.89) 4-6, 7-6(6), 6-4"
              }
            ]
          },
          {
            "index": 31,
            "rating": 15.7,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Sat May 18 Win vs. D. Schwartzman (15.69) 6-3, 6-7(2), 6-3"
              }
            ]
          },
          {
            "index": 37,
            "rating": 15.6,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Mon May 27 Win vs. H. Hurkacz (15.58) 6-4, 6-2, 6-2"
              }
            ]
          },
          {
            "index": 39,
            "rating": 14.95,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Thu May 30 Win vs. H. Laaksonen (14.97) 6-1, 6-4, 6-3"
              }
            ]
          },
          {
            "index": 32,
            "rating": 16.3,
            "aggregate": {
              "count": 1,
              "winsCount": 0,
              "lossesCount": 1,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Sun May 19 Loss vs. R. Nadal (16.32) 6-0, 4-6, 6-1"
              }
            ]
          }
        ]
      },
      {
        "month": {
          "name": "June",
          "abbr": "JUN"
        },
        "ratings": [
          {
            "index": 40,
            "rating": 16.23
          },
          {
            "index": 45,
            "rating": 16.26
          },
          {
            "index": 50,
            "rating": 16.110369790681222
          },
          {
            "index": 55,
            "rating": 16.110369790681222
          }
        ],
        "minRating": 16.110369790681222,
        "maxRating": 16.26,
        "startRating": 16.23,
        "endRating": 16.110369790681222,
        "results": [
          {
            "index": 40,
            "rating": 15.05,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Sat Jun 1 Win vs. S. Caruso (15.05) 6-3, 6-3, 6-2"
              }
            ]
          },
          {
            "index": 41,
            "rating": 15.65,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Mon Jun 3 Win vs. J. Struff (15.65) 6-3, 6-2, 6-2"
              }
            ]
          },
          {
            "index": 43,
            "rating": 15.5,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Thu Jun 6 Win vs. A. Zverev (15.49) 7-5, 6-2, 6-2"
              }
            ]
          },
          {
            "index": 44,
            "rating": 15.9,
            "aggregate": {
              "count": 1,
              "winsCount": 0,
              "lossesCount": 1,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Fri Jun 7 Loss vs. D. Thiem (15.91) 6-2, 3-6, 7-5, 5-7, 7-5"
              }
            ]
          }
        ]
      },
      {
        "month": {
          "name": "July",
          "abbr": "JUL"
        },
        "ratings": [
          {
            "index": 60,
            "rating": 16.110369790681222
          },
          {
            "index": 65,
            "rating": 16.110369790681222
          },
          {
            "index": 70,
            "rating": 16.13151752928816
          },
          {
            "index": 75,
            "rating": 16.13151752928816
          }
        ],
        "minRating": 16.110369790681222,
        "maxRating": 16.146173504331458,
        "startRating": 16.110369790681222,
        "endRating": 16.13151752928816,
        "results": [
          {
            "index": 60,
            "rating": 15.25,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Mon Jul 1 Win vs. P. Kohlschreiber (15.25) 6-3, 7-5, 6-3"
              }
            ]
          },
          {
            "index": 61,
            "rating": 15.05,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Wed Jul 3 Win vs. D. Kudla (15.05) 6-3, 6-2, 6-2"
              }
            ]
          },
          {
            "index": 63,
            "rating": 15.6,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Fri Jul 5 Win vs. H. Hurkacz (15.58) 7-5, 6-7(5), 6-1, 6-4"
              }
            ]
          },
          {
            "index": 65,
            "rating": 15.25,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Mon Jul 8 Win vs. U. Humbert (15.23) 6-3, 6-2, 6-3"
              }
            ]
          },
          {
            "index": 66,
            "rating": 15.75,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Wed Jul 10 Win vs. D. Goffin (15.76) 6-4, 6-0, 6-2"
              }
            ]
          },
          {
            "index": 67,
            "rating": 15.8,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Fri Jul 12 Win vs. R. Bautista-Agut (15.81) 6-2, 4-6, 6-3, 6-2"
              }
            ]
          },
          {
            "index": 69,
            "rating": 16.15,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Sun Jul 14 Win vs. R. Federer (16.14) 7-6(5), 1-6, 7-6(4), 4-6, 13-12(3)"
              }
            ]
          }
        ]
      },
      {
        "month": {
          "name": "August",
          "abbr": "AUG"
        },
        "ratings": [
          {
            "index": 80,
            "rating": 16.13151752928816
          },
          {
            "index": 85,
            "rating": 16.13151752928816
          },
          {
            "index": 90,
            "rating": 16.151791273748284
          },
          {
            "index": 95,
            "rating": 16.151791273748284
          }
        ],
        "minRating": 16.13151752928816,
        "maxRating": 16.175093058260426,
        "startRating": 16.13151752928816,
        "endRating": 16.175093058260426,
        "results": [
          {
            "index": 88,
            "rating": 15.55,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Tue Aug 13 Win vs. S. Querrey (15.53) 7-5, 6-1"
              }
            ]
          },
          {
            "index": 89,
            "rating": 15.55,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Thu Aug 15 Win vs. P. Carreno-Busta (15.53) 6-3, 6-4"
              }
            ]
          },
          {
            "index": 91,
            "rating": 15.45,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Sat Aug 17 Win vs. L. Pouille (15.47) 7-6(2), 6-1"
              }
            ]
          },
          {
            "index": 97,
            "rating": 15.2,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Mon Aug 26 Win vs. R. Carballes Baena (15.2) 6-4, 6-1, 6-4"
              }
            ]
          },
          {
            "index": 98,
            "rating": 15.4,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Wed Aug 28 Win vs. J. Londero (15.4) 6-4, 7-6(3), 6-1"
              }
            ]
          },
          {
            "index": 100,
            "rating": 15.05,
            "aggregate": {
              "count": 1,
              "winsCount": 1,
              "lossesCount": 0,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Sat Aug 31 Win vs. D. Kudla (15.05) 6-3, 6-4, 6-2"
              }
            ]
          },
          {
            "index": 91,
            "rating": 16,
            "aggregate": {
              "count": 1,
              "winsCount": 0,
              "lossesCount": 1,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Sat Aug 17 Loss vs. D. Medvedev (16.01) 3-6, 6-3, 6-3"
              }
            ]
          }
        ]
      },
      {
        "month": {
          "name": "September",
          "abbr": "SEP"
        },
        "ratings": [
          {
            "index": 100,
            "rating": 16.175093058260426
          },
          {
            "index": 105,
            "rating": 16.175093058260426
          },
          {
            "index": 110,
            "rating": 16.16024978287084
          },
          {
            "index": 115,
            "rating": 16.16024978287084
          }
        ],
        "minRating": 16.16024978287084,
        "maxRating": 16.175093058260426,
        "startRating": 16.175093058260426,
        "endRating": 16.16024978287084,
        "results": [
          {
            "index": 101,
            "rating": 15.65,
            "aggregate": {
              "count": 1,
              "winsCount": 0,
              "lossesCount": 1,
              "tiesCount": 0
            },
            "descriptions": [
              {
                "details": "Mon Sep 2 Loss vs. S. Wawrinka (15.66) 6-4, 7-5, 2-1"
              }
            ]
          }
        ]
      },
      {
        "month": {
          "name": "October",
          "abbr": "OCT"
        },
        "ratings": [
          {
            "index": 120,
            "rating": 16.16024978287084
          },
          {
            "index": 125,
            "rating": 16.16024978287084
          },
          {
            "index": 130,
            "rating": null
          },
          {
            "index": 135,
            "rating": null
          }
        ],
        "minRating": 16.16024978287084,
        "maxRating": 16.16024978287084,
        "startRating": 16.16024978287084,
        "endRating": 16.16024978287084,
        "results": []
      }
    ],
    "minRatingForScale": 14.625,
    "maxRatingForScale": 16.5,
    "ratingScaleStepSize": 0.125,
    "maxNonRatingScaleChartTicks": 140,
    "nonRatingScaleStepSize": 0
  },
  "victoryMarginChart": {
    "currentRating": 16.16,
    "results": [
      {
        "index": 66,
        "rating": 15.55,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Tue May 7 Win vs. T. Fritz (15.56) 6-4, 6-2"
          }
        ]
      },
      {
        "index": 54,
        "rating": 15.9,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Sat May 11 Win vs. D. Thiem (15.91) 7-6(2), 7-6(4)"
          }
        ]
      },
      {
        "index": 66,
        "rating": 15.4,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Thu May 9 Win vs. J. Chardy (15.42) 6-1, 7-6(2)"
          }
        ]
      },
      {
        "index": 75,
        "rating": 15.55,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Thu May 16 Win vs. D. Shapovalov (15.55) 6-1, 6-3"
          }
        ]
      },
      {
        "index": 81,
        "rating": 15.25,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Thu May 16 Win vs. P. Kohlschreiber (15.25) 6-3, 6-0"
          }
        ]
      },
      {
        "index": 51,
        "rating": 15.9,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Fri May 17 Win vs. J. Del Potro (15.89) 4-6, 7-6(6), 6-4"
          }
        ]
      },
      {
        "index": 57,
        "rating": 15.7,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Sat May 18 Win vs. D. Schwartzman (15.69) 6-3, 6-7(2), 6-3"
          }
        ]
      },
      {
        "index": 69,
        "rating": 15.6,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Mon May 27 Win vs. H. Hurkacz (15.58) 6-4, 6-2, 6-2"
          }
        ]
      },
      {
        "index": 69,
        "rating": 14.95,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Thu May 30 Win vs. H. Laaksonen (14.97) 6-1, 6-4, 6-3"
          }
        ]
      },
      {
        "index": 69,
        "rating": 15.05,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Sat Jun 1 Win vs. S. Caruso (15.05) 6-3, 6-3, 6-2"
          }
        ]
      },
      {
        "index": 72,
        "rating": 15.65,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Mon Jun 3 Win vs. J. Struff (15.65) 6-3, 6-2, 6-2"
          }
        ]
      },
      {
        "index": 69,
        "rating": 15.5,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Thu Jun 6 Win vs. A. Zverev (15.49) 7-5, 6-2, 6-2"
          }
        ]
      },
      {
        "index": 63,
        "rating": 15.25,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Mon Jul 1 Win vs. P. Kohlschreiber (15.25) 6-3, 7-5, 6-3"
          }
        ]
      },
      {
        "index": 72,
        "rating": 15.05,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Wed Jul 3 Win vs. D. Kudla (15.05) 6-3, 6-2, 6-2"
          }
        ]
      },
      {
        "index": 60,
        "rating": 15.6,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Fri Jul 5 Win vs. H. Hurkacz (15.58) 7-5, 6-7(5), 6-1, 6-4"
          }
        ]
      },
      {
        "index": 69,
        "rating": 15.25,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Mon Jul 8 Win vs. U. Humbert (15.23) 6-3, 6-2, 6-3"
          }
        ]
      },
      {
        "index": 75,
        "rating": 15.75,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Wed Jul 10 Win vs. D. Goffin (15.76) 6-4, 6-0, 6-2"
          }
        ]
      },
      {
        "index": 63,
        "rating": 15.8,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Fri Jul 12 Win vs. R. Bautista-Agut (15.81) 6-2, 4-6, 6-3, 6-2"
          }
        ]
      },
      {
        "index": 48,
        "rating": 16.15,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Sun Jul 14 Win vs. R. Federer (16.14) 7-6(5), 1-6, 7-6(4), 4-6, 13-12(3)"
          }
        ]
      },
      {
        "index": 69,
        "rating": 15.55,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Tue Aug 13 Win vs. S. Querrey (15.53) 7-5, 6-1"
          }
        ]
      },
      {
        "index": 63,
        "rating": 15.55,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Thu Aug 15 Win vs. P. Carreno-Busta (15.53) 6-3, 6-4"
          }
        ]
      },
      {
        "index": 66,
        "rating": 15.45,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Sat Aug 17 Win vs. L. Pouille (15.47) 7-6(2), 6-1"
          }
        ]
      },
      {
        "index": 66,
        "rating": 15.2,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Mon Aug 26 Win vs. R. Carballes Baena (15.2) 6-4, 6-1, 6-4"
          }
        ]
      },
      {
        "index": 63,
        "rating": 15.4,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Wed Aug 28 Win vs. J. Londero (15.4) 6-4, 7-6(3), 6-1"
          }
        ]
      },
      {
        "index": 66,
        "rating": 15.05,
        "aggregate": {
          "count": 1,
          "winsCount": 1,
          "lossesCount": 0,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Sat Aug 31 Win vs. D. Kudla (15.05) 6-3, 6-4, 6-2"
          }
        ]
      },
      {
        "index": 30,
        "rating": 16.3,
        "aggregate": {
          "count": 1,
          "winsCount": 0,
          "lossesCount": 1,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Sun May 19 Loss vs. R. Nadal (16.32) 6-0, 4-6, 6-1"
          }
        ]
      },
      {
        "index": 48,
        "rating": 15.9,
        "aggregate": {
          "count": 1,
          "winsCount": 0,
          "lossesCount": 1,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Fri Jun 7 Loss vs. D. Thiem (15.91) 6-2, 3-6, 7-5, 5-7, 7-5"
          }
        ]
      },
      {
        "index": 45,
        "rating": 16,
        "aggregate": {
          "count": 1,
          "winsCount": 0,
          "lossesCount": 1,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Sat Aug 17 Loss vs. D. Medvedev (16.01) 3-6, 6-3, 6-3"
          }
        ]
      },
      {
        "index": 39,
        "rating": 15.65,
        "aggregate": {
          "count": 1,
          "winsCount": 0,
          "lossesCount": 1,
          "tiesCount": 0
        },
        "descriptions": [
          {
            "details": "Mon Sep 2 Loss vs. S. Wawrinka (15.66) 6-4, 7-5, 2-1"
          }
        ]
      }
    ],
    "minRatingForScale": 14.625,
    "maxRatingForScale": 16.5,
    "ratingScaleStepSize": 0.125,
    "maxNonRatingScaleChartTicks": 100,
    "nonRatingScaleStepSize": 20
  }
}

Profile

Club profile information including location, events, etc.

GET https://www.myutr.com/api/v1/club/{club_id}

Parameter Type Required? Description
Club ID Integer Required The Club ID can be obtained using a club search or from a club URL on the Universal Tennis website.

{
  "id": 1,
  "name": "Ryan's Tennis Club",
  "description": "This club is for causal tennis players",
  "locationId": 335,
  "photoCount": 0,
  "paymentsEnabled": false,
  "memberCount": 2,
  "ownerCount": 1,
  "adminCount": 1,
  "resultCount": 0,
  "availableMemberSlots": -1,
  "availableOwnerSlots": 1,
  "availableAdminSlots": 3,
  "isTournamentClub": false,
  "isPro": true,
  "isEnterprise": false,
  "isSpecial": false,
  "isFreeCollege": false,
  "isProCollege": false,
  "clubHasSchool": false,
  "canHaveMultipleAdmins": true,
  "canHaveMultipleOwners": true,
  "sanctioned": true,
  "url": null,
  "bannerUrl": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg",
  "eventCount": 0,
  "demoEventCount": 0,
  "location": {
    "locationId": 335,
    "latLng": [
      28.5383355,
      -81.3792365
    ],
    "display": "Orlando, FL",
    "googleFormattedName": "Orlando, FL, USA",
    "googlePlaceId": "ChIJd7zN_thz54gRnr-lPAaywwo",
    "placeName": null,
    "streetAddress": "",
    "cityStateZip": "Orlando, FL",
    "cityName": "Orlando",
    "cityAbbr": "Orlando",
    "stateName": "Florida",
    "stateAbbr": "FL",
    "countryName": "United States",
    "countryCode2": "US",
    "countryCode3": "USA",
    "countryIoc": "USA"
  },
  "clubMembers": [
    {
      "memberId": 1293,
      "clubMemberRoleId": 2,
      "firstName": "Pro Plus",
      "lastName": "Subscription",
      "intialJoinDate": "2018-05-15T22:18:29",
      "role": "Admin",
      "clubMemberTypeId": 2,
      "isPower": false,
      "isPoweredByClub": false,
      "isPoweredBySubscription": true,
      "location": "Palo Alto, CA",
      "gender": "M",
      "playerId": null,
      "singlesUtr": null,
      "ratingStatusSingles": null,
      "doublesUtr": null,
      "ratingStatusDoubles": null,
      "myUtrSingles": null,
      "myUtrDoubles": null,
      "myUtrSinglesReliability": null,
      "myUtrDoublesReliability": null,
      "myUtrStatusSingles": null,
      "myUtrStatusDoubles": null,
      "myUtrSinglesStatusValue": null,
      "myUtrDoublesStatusValue": null,
      "nationality": null,
      "ratingChoice": null,
      "playerProfileImages": {
        "default": null,
        "thumbnail": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        },
        "card": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        },
        "profile": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        },
        "icon": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        }
      },
      "displayName": "Pro Plus Subscription",
      "isPro": false
    },
    {
      "memberId": 5850,
      "clubMemberRoleId": 1,
      "firstName": "Ryan",
      "lastName": "Ward",
      "intialJoinDate": "2018-05-14T02:44:13",
      "role": "Owner",
      "clubMemberTypeId": 2,
      "isPower": false,
      "isPoweredByClub": false,
      "isPoweredBySubscription": true,
      "location": "Orlando, FL",
      "gender": "M",
      "playerId": "1526515",
      "singlesUtr": "0",
      "ratingStatusSingles": "Unrated",
      "doublesUtr": "0",
      "ratingStatusDoubles": "Unrated",
      "myUtrSingles": 3,
      "myUtrDoubles": 3,
      "myUtrSinglesReliability": 0,
      "myUtrDoublesReliability": 0,
      "myUtrStatusSingles": "Unrated",
      "myUtrStatusDoubles": "Unrated",
      "myUtrSinglesStatusValue": 0,
      "myUtrDoublesStatusValue": 0,
      "nationality": "USA",
      "ratingChoice": null,
      "playerProfileImages": {
        "default": null,
        "thumbnail": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        },
        "card": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        },
        "profile": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        },
        "icon": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        }
      },
      "displayName": "Ryan Ward",
      "isPro": false
    }
  ],
  "tmsEvents": [],
  "teamMatches": [],
  "currentMember": {
    "role": null,
    "clubMemberRequest": null
  },
  "formerClubMembers": null,
  "clubMemberRequests": [],
  "clubMemberInvites": null,
  "tmsPercentFee": null,
  "verificationApplicationStatus": "",
  "private": false,
  "tierType": {
    "id": 2,
    "name": "Pro",
    "maxOwners": 2,
    "maxMembers": 0,
    "maxOrganizers": 4,
    "enablePayments": true,
    "verificationAllowed": true,
    "canRunEvents": true,
    "canPostScores": true,
    "isSearchable": true,
    "isCollege": false,
    "isHighSchool": false,
    "permissionedTmsEventTypes": [
      {
        "id": 1,
        "value": "tournament",
        "label": "Tournament",
        "description": "Create draws types such as round robins, compass draws, and traditional formats"
      },
      {
        "id": 5,
        "value": "camp",
        "label": "Camp",
        "description": "Group players by UTR and post match play scores"
      },
      {
        "id": 6,
        "value": "clinic",
        "label": "Clinic",
        "description": "Group players by UTR during drills and match play"
      },
      {
        "id": 7,
        "value": "match_play",
        "label": "Match Play",
        "description": "Less structured schedule of play. Match players up when they arrive and post scores!"
      }
    ]
  },
  "statusType": {
    "id": 4,
    "value": "suspended",
    "label": "Suspended",
    "description": "Payment hasn't gone through past the 30 day grace period so now the account is suspended"
  },
  "clubType": null,
  "clubSubType": null,
  "tmsFeeMaximum": null,
  "verificationFee": null,
  "isTrialing": false,
  "trialEndDateUtc": null,
  "sponsorLogoUrl": null,
  "schoolProfile": null,
  "teamRoles": [],
  "currency": {
    "id": 1,
    "name": "Dollars",
    "abbreviation": "USD",
    "symbol": "$"
  },
  "clubImages": {
    "default": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg",
    "banner": {
      "oneX": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg?size=1X&type=banner",
      "twoX": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg?size=2X&type=banner",
      "threeX": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg?size=3X&type=banner"
    },
    "dashboard": {
      "oneX": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg?size=1X&type=dashboard",
      "twoX": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg?size=2X&type=dashboard",
      "threeX": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg?size=3X&type=dashboard"
    }
  },
  "canRunEvents": true,
  "referralCode": "ryansten586",
  "clubPromoCreditBalance": {
    "balance": 0,
    "currency": {
      "id": 1,
      "name": "Dollars",
      "abbreviation": "USD",
      "symbol": "$"
    }
  },
  "profilePhotoUrl": null,
  "clubProfileImages": {
    "default": null,
    "thumbnail": {
      "oneX": null,
      "twoX": null,
      "threeX": null
    },
    "card": {
      "oneX": null,
      "twoX": null,
      "threeX": null
    },
    "profile": {
      "oneX": null,
      "twoX": null,
      "threeX": null
    },
    "icon": {
      "oneX": null,
      "twoX": null,
      "threeX": null
    }
  },
  "maxPowerUsers": 0,
  "currentPowerUsers": 0,
  "clubContract": null,
  "upcomingEvents": [],
  "recentEvents": [],
  "refereeBonus": null,
  "referrerBonus": null,
  "lastEventIds": {
    "1": 582
  }
}

Results

Gets results from club events.

GET https://www.myutr.com/api/v1/club/{club_id}/clubresults

Parameter Type Required? Description
Club ID Integer Required The Club ID can be obtained using a club search or from a club URL on the Universal Tennis website.
Count Integer Required Number of results to display. Default is 100.

{
  "events": [
    {
      "id": 729,
      "name": "Denton December UTR",
      "isTms": true,
      "timeZone": {
        "id": 43,
        "value": "America/Chicago",
        "label": "America/Chicago",
        "description": "",
        "offset": "-05:00",
        "labelLong": "America/Chicago (-05:00)"
      },
      "startDate": "2018-12-08T15:00:00",
      "endDate": "2018-12-10T00:00:00",
      "draws": [
        {
          "id": 0,
          "tmsId": "60b50976-35e3-406f-ac7f-2cbef270ca5b",
          "name": "Doubles Group 1 ",
          "teamType": null,
          "gender": null,
          "results": [
            {
              "eventViewModel": null,
              "date": "2018-12-09T20:10:43",
              "id": 14097229,
              "clubIds": [],
              "players": {
                "winner1": {
                  "eventViewModel": null,
                  "id": "1521660",
                  "firstName": "jonah",
                  "lastName": "kirkpatrick",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 5.72,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 6.69,
                  "ratingStatusDoubles": "Projected",
                  "ratingProgressDoubles": "52",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-projected.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 5.55,
                  "myUtrStatusSingles": "Projected",
                  "myUtrDoubles": 6.69,
                  "myUtrStatusDoubles": "Projected",
                  "memberId": null
                },
                "winner2": {
                  "eventViewModel": null,
                  "id": "911827",
                  "firstName": "Alejandro",
                  "lastName": "BENITEZ",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 0,
                  "ratingStatusSingles": "Unrated",
                  "ratingProgressSingles": "0",
                  "ratingStatusImgageSingles": null,
                  "doublesUtr": 6.76,
                  "ratingStatusDoubles": "Projected",
                  "ratingProgressDoubles": "48",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-projected.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 0,
                  "myUtrStatusSingles": "Unrated",
                  "myUtrDoubles": 6.76,
                  "myUtrStatusDoubles": "Projected",
                  "memberId": null
                },
                "loser1": {
                  "eventViewModel": null,
                  "id": "277316",
                  "firstName": "Josie",
                  "lastName": "Thomas",
                  "gender": "F",
                  "city": null,
                  "state": null,
                  "singlesUtr": 5.23,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 5.03,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 5.23,
                  "myUtrStatusSingles": "Rated",
                  "myUtrDoubles": 5.03,
                  "myUtrStatusDoubles": "Rated",
                  "memberId": null
                },
                "loser2": {
                  "eventViewModel": null,
                  "id": "1336742",
                  "firstName": "hayden",
                  "lastName": "flowers",
                  "gender": "F",
                  "city": null,
                  "state": null,
                  "singlesUtr": 4.65,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 4.94,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 4.65,
                  "myUtrStatusSingles": "Rated",
                  "myUtrDoubles": 4.94,
                  "myUtrStatusDoubles": "Rated",
                  "memberId": null
                }
              },
              "videos": null,
              "round": null,
              "sourceType": "sanctioned",
              "completionType": "winnercompleted",
              "outcome": null,
              "isWinner": true,
              "playerPostedResult": false,
              "finalized": true,
              "submittingMemberId": 72349,
              "excludeFromRating": false,
              "actions": {
                "delete": {
                  "allowed": false
                },
                "edit": {
                  "allowed": false
                },
                "accept": {
                  "allowed": false
                },
                "reject": {
                  "allowed": false
                },
                "resendInvite": {
                  "allowed": false
                }
              },
              "isRejected": false,
              "score": {
                "1": {
                  "winner": 6,
                  "loser": 2,
                  "tiebreak": null,
                  "winnerTiebreak": null
                }
              },
              "winner1Status": null,
              "winner2Status": null,
              "loser1Status": null,
              "loser2Status": null
            },
            {
              "eventViewModel": null,
              "date": "2018-12-09T20:06:40",
              "id": 14097222,
              "clubIds": [],
              "players": {
                "winner1": {
                  "eventViewModel": null,
                  "id": "857835",
                  "firstName": "Baker",
                  "lastName": "Brooks",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 5.23,
                  "ratingStatusSingles": "Projected",
                  "ratingProgressSingles": "36",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-projected.png?h=17",
                  "doublesUtr": 5.85,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 6,
                  "myUtrStatusSingles": "Unrated",
                  "myUtrDoubles": 6,
                  "myUtrStatusDoubles": "Unrated",
                  "memberId": null
                },
                "winner2": {
                  "eventViewModel": null,
                  "id": "857827",
                  "firstName": "Spencer",
                  "lastName": "Counts",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 5.68,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 5.8,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 6,
                  "myUtrStatusSingles": "Unrated",
                  "myUtrDoubles": 6,
                  "myUtrStatusDoubles": "Unrated",
                  "memberId": null
                },
                "loser1": {
                  "eventViewModel": null,
                  "id": "1059868",
                  "firstName": "Jana",
                  "lastName": "Haggard",
                  "gender": "F",
                  "city": null,
                  "state": null,
                  "singlesUtr": 0,
                  "ratingStatusSingles": "Unrated",
                  "ratingProgressSingles": "0",
                  "ratingStatusImgageSingles": null,
                  "doublesUtr": 5.82,
                  "ratingStatusDoubles": "Projected",
                  "ratingProgressDoubles": "60",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-projected.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 3.5,
                  "myUtrStatusSingles": "Unrated",
                  "myUtrDoubles": 3.5,
                  "myUtrStatusDoubles": "Unrated",
                  "memberId": null
                },
                "loser2": {
                  "eventViewModel": null,
                  "id": "913593",
                  "firstName": "Luis",
                  "lastName": "Munguia",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 0,
                  "ratingStatusSingles": "Inactive",
                  "ratingProgressSingles": "0",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-inactive.png?h=17",
                  "doublesUtr": 4.35,
                  "ratingStatusDoubles": "Projected",
                  "ratingProgressDoubles": "24",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-projected.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 0,
                  "myUtrStatusSingles": "Inactive",
                  "myUtrDoubles": 4.35,
                  "myUtrStatusDoubles": "Projected",
                  "memberId": null
                }
              },
              "videos": null,
              "round": null,
              "sourceType": "sanctioned",
              "completionType": "winnerdidnotstart",
              "outcome": "withdrew",
              "isWinner": true,
              "playerPostedResult": false,
              "finalized": true,
              "submittingMemberId": 72349,
              "excludeFromRating": false,
              "actions": {
                "delete": {
                  "allowed": false
                },
                "edit": {
                  "allowed": false
                },
                "accept": {
                  "allowed": false
                },
                "reject": {
                  "allowed": false
                },
                "resendInvite": {
                  "allowed": false
                }
              },
              "isRejected": false,
              "score": {},
              "winner1Status": null,
              "winner2Status": null,
              "loser1Status": null,
              "loser2Status": null
            },
            {
              "eventViewModel": null,
              "date": "2018-12-09T20:06:19",
              "id": 14097221,
              "clubIds": [],
              "players": {
                "winner1": {
                  "eventViewModel": null,
                  "id": "1521660",
                  "firstName": "jonah",
                  "lastName": "kirkpatrick",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 5.72,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 6.69,
                  "ratingStatusDoubles": "Projected",
                  "ratingProgressDoubles": "52",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-projected.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 5.55,
                  "myUtrStatusSingles": "Projected",
                  "myUtrDoubles": 6.69,
                  "myUtrStatusDoubles": "Projected",
                  "memberId": null
                },
                "winner2": {
                  "eventViewModel": null,
                  "id": "911827",
                  "firstName": "Alejandro",
                  "lastName": "BENITEZ",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 0,
                  "ratingStatusSingles": "Unrated",
                  "ratingProgressSingles": "0",
                  "ratingStatusImgageSingles": null,
                  "doublesUtr": 6.76,
                  "ratingStatusDoubles": "Projected",
                  "ratingProgressDoubles": "48",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-projected.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 0,
                  "myUtrStatusSingles": "Unrated",
                  "myUtrDoubles": 6.76,
                  "myUtrStatusDoubles": "Projected",
                  "memberId": null
                },
                "loser1": {
                  "eventViewModel": null,
                  "id": "219719",
                  "firstName": "Isaac",
                  "lastName": "Boodt",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 5.87,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 5.64,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 7,
                  "myUtrStatusSingles": "Unrated",
                  "myUtrDoubles": 3.15,
                  "myUtrStatusDoubles": "Projected",
                  "memberId": null
                },
                "loser2": {
                  "eventViewModel": null,
                  "id": "219718",
                  "firstName": "Kesavan",
                  "lastName": "Srivilliputhur",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 6.13,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 5.65,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 6.13,
                  "myUtrStatusSingles": "Rated",
                  "myUtrDoubles": 3.15,
                  "myUtrStatusDoubles": "Projected",
                  "memberId": null
                }
              },
              "videos": null,
              "round": null,
              "sourceType": "sanctioned",
              "completionType": "winnercompleted",
              "outcome": null,
              "isWinner": true,
              "playerPostedResult": false,
              "finalized": true,
              "submittingMemberId": 72349,
              "excludeFromRating": false,
              "actions": {
                "delete": {
                  "allowed": false
                },
                "edit": {
                  "allowed": false
                },
                "accept": {
                  "allowed": false
                },
                "reject": {
                  "allowed": false
                },
                "resendInvite": {
                  "allowed": false
                }
              },
              "isRejected": false,
              "score": {
                "1": {
                  "winner": 6,
                  "loser": 4,
                  "tiebreak": null,
                  "winnerTiebreak": null
                }
              },
              "winner1Status": null,
              "winner2Status": null,
              "loser1Status": null,
              "loser2Status": null
            },
            {
              "eventViewModel": null,
              "date": "2018-12-09T20:06:06",
              "id": 14097220,
              "clubIds": [],
              "players": {
                "winner1": {
                  "eventViewModel": null,
                  "id": "857835",
                  "firstName": "Baker",
                  "lastName": "Brooks",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 5.23,
                  "ratingStatusSingles": "Projected",
                  "ratingProgressSingles": "36",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-projected.png?h=17",
                  "doublesUtr": 5.85,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 6,
                  "myUtrStatusSingles": "Unrated",
                  "myUtrDoubles": 6,
                  "myUtrStatusDoubles": "Unrated",
                  "memberId": null
                },
                "winner2": {
                  "eventViewModel": null,
                  "id": "857827",
                  "firstName": "Spencer",
                  "lastName": "Counts",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 5.68,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 5.8,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 6,
                  "myUtrStatusSingles": "Unrated",
                  "myUtrDoubles": 6,
                  "myUtrStatusDoubles": "Unrated",
                  "memberId": null
                },
                "loser1": {
                  "eventViewModel": null,
                  "id": "277316",
                  "firstName": "Josie",
                  "lastName": "Thomas",
                  "gender": "F",
                  "city": null,
                  "state": null,
                  "singlesUtr": 5.23,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 5.03,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 5.23,
                  "myUtrStatusSingles": "Rated",
                  "myUtrDoubles": 5.03,
                  "myUtrStatusDoubles": "Rated",
                  "memberId": null
                },
                "loser2": {
                  "eventViewModel": null,
                  "id": "1336742",
                  "firstName": "hayden",
                  "lastName": "flowers",
                  "gender": "F",
                  "city": null,
                  "state": null,
                  "singlesUtr": 4.65,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 4.94,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 4.65,
                  "myUtrStatusSingles": "Rated",
                  "myUtrDoubles": 4.94,
                  "myUtrStatusDoubles": "Rated",
                  "memberId": null
                }
              },
              "videos": null,
              "round": null,
              "sourceType": "sanctioned",
              "completionType": "winnercompleted",
              "outcome": null,
              "isWinner": true,
              "playerPostedResult": false,
              "finalized": true,
              "submittingMemberId": 72349,
              "excludeFromRating": false,
              "actions": {
                "delete": {
                  "allowed": false
                },
                "edit": {
                  "allowed": false
                },
                "accept": {
                  "allowed": false
                },
                "reject": {
                  "allowed": false
                },
                "resendInvite": {
                  "allowed": false
                }
              },
              "isRejected": false,
              "score": {
                "1": {
                  "winner": 6,
                  "loser": 3,
                  "tiebreak": null,
                  "winnerTiebreak": null
                }
              },
              "winner1Status": null,
              "winner2Status": null,
              "loser1Status": null,
              "loser2Status": null
            },
            {
              "eventViewModel": null,
              "date": "2018-12-09T20:05:45",
              "id": 14097219,
              "clubIds": [],
              "players": {
                "winner1": {
                  "eventViewModel": null,
                  "id": "857835",
                  "firstName": "Baker",
                  "lastName": "Brooks",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 5.23,
                  "ratingStatusSingles": "Projected",
                  "ratingProgressSingles": "36",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-projected.png?h=17",
                  "doublesUtr": 5.85,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 6,
                  "myUtrStatusSingles": "Unrated",
                  "myUtrDoubles": 6,
                  "myUtrStatusDoubles": "Unrated",
                  "memberId": null
                },
                "winner2": {
                  "eventViewModel": null,
                  "id": "857827",
                  "firstName": "Spencer",
                  "lastName": "Counts",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 5.68,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 5.8,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 6,
                  "myUtrStatusSingles": "Unrated",
                  "myUtrDoubles": 6,
                  "myUtrStatusDoubles": "Unrated",
                  "memberId": null
                },
                "loser1": {
                  "eventViewModel": null,
                  "id": "219719",
                  "firstName": "Isaac",
                  "lastName": "Boodt",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 5.87,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 5.64,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 7,
                  "myUtrStatusSingles": "Unrated",
                  "myUtrDoubles": 3.15,
                  "myUtrStatusDoubles": "Projected",
                  "memberId": null
                },
                "loser2": {
                  "eventViewModel": null,
                  "id": "219718",
                  "firstName": "Kesavan",
                  "lastName": "Srivilliputhur",
                  "gender": "M",
                  "city": null,
                  "state": null,
                  "singlesUtr": 6.13,
                  "ratingStatusSingles": "Rated",
                  "ratingProgressSingles": "100",
                  "ratingStatusImgageSingles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "doublesUtr": 5.65,
                  "ratingStatusDoubles": "Rated",
                  "ratingProgressDoubles": "100",
                  "ratingStatusImgageDoubles": "https://universaltennis.com/azure/images/icons/status-rated.png?h=17",
                  "importSource": null,
                  "nationality": "USA",
                  "myUtrSingles": 6.13,
                  "myUtrStatusSingles": "Rated",
                  "myUtrDoubles": 3.15,
                  "myUtrStatusDoubles": "Projected",
                  "memberId": null
                }
              },
              "videos": null,
              "round": null,
              "sourceType": "sanctioned",
              "completionType": "winnercompleted",
              "outcome": null,
              "isWinner": true,
              "playerPostedResult": false,
              "finalized": true,
              "submittingMemberId": 72349,
              "excludeFromRating": false,
              "actions": {
                "delete": {
                  "allowed": false
                },
                "edit": {
                  "allowed": false
                },
                "accept": {
                  "allowed": false
                },
                "reject": {
                  "allowed": false
                },
                "resendInvite": {
                  "allowed": false
                }
              },
              "isRejected": false,
              "score": {
                "1": {
                  "winner": 6,
                  "loser": 3,
                  "tiebreak": null,
                  "winnerTiebreak": null
                }
              },
              "winner1Status": null,
              "winner2Status": null,
              "loser1Status": null,
              "loser2Status": null
            }
          ]
        }
      ],
      "results": []
    }
  ]
}

Members

Gets members of club.

GET https://www.myutr.com/api/v1/club/{club_id}/clubmembers

Parameter Type Required? Description
Club ID Integer Required The Club ID can be obtained using a club search or from a club URL on the Universal Tennis website.
Count Integer Optional Number of results to display. Default is 20.

[
  {
    "memberId": 5850,
    "clubMemberRoleId": 1,
    "firstName": "Ryan",
    "lastName": "Ward",
    "intialJoinDate": "2018-05-14T02:44:13",
    "role": "Owner",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": true,
    "location": "Orlando, FL",
    "gender": "M",
    "playerId": "1526515",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 3,
    "myUtrDoubles": 3,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Ryan Ward",
    "isPro": false
  },
  {
    "memberId": 1293,
    "clubMemberRoleId": 2,
    "firstName": "Pro Plus",
    "lastName": "Subscription",
    "intialJoinDate": "2018-05-15T22:18:29",
    "role": "Admin",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": true,
    "location": "Palo Alto, CA",
    "gender": "M",
    "playerId": null,
    "singlesUtr": null,
    "ratingStatusSingles": null,
    "doublesUtr": null,
    "ratingStatusDoubles": null,
    "myUtrSingles": null,
    "myUtrDoubles": null,
    "myUtrSinglesReliability": null,
    "myUtrDoublesReliability": null,
    "myUtrStatusSingles": null,
    "myUtrStatusDoubles": null,
    "myUtrSinglesStatusValue": null,
    "myUtrDoublesStatusValue": null,
    "nationality": null,
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Pro Plus Subscription",
    "isPro": false
  }
]

Profile

Club profile information including location, events, etc.

GET https://www.myutr.com/api/v1/club/{club_id}

Parameter Type Required? Description
Club ID Integer Required The Club ID can be obtained using a club search or from a club URL on the Universal Tennis website.

{
  "id": 1,
  "name": "Ryan's Tennis Club",
  "description": "This club is for causal tennis players",
  "locationId": 335,
  "photoCount": 0,
  "paymentsEnabled": false,
  "memberCount": 2,
  "ownerCount": 1,
  "adminCount": 1,
  "resultCount": 0,
  "availableMemberSlots": -1,
  "availableOwnerSlots": 1,
  "availableAdminSlots": 3,
  "isTournamentClub": false,
  "isPro": true,
  "isEnterprise": false,
  "isSpecial": false,
  "isFreeCollege": false,
  "isProCollege": false,
  "clubHasSchool": false,
  "canHaveMultipleAdmins": true,
  "canHaveMultipleOwners": true,
  "sanctioned": true,
  "url": null,
  "bannerUrl": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg",
  "eventCount": 0,
  "demoEventCount": 0,
  "location": {
    "locationId": 335,
    "latLng": [
      28.5383355,
      -81.3792365
    ],
    "display": "Orlando, FL",
    "googleFormattedName": "Orlando, FL, USA",
    "googlePlaceId": "ChIJd7zN_thz54gRnr-lPAaywwo",
    "placeName": null,
    "streetAddress": "",
    "cityStateZip": "Orlando, FL",
    "cityName": "Orlando",
    "cityAbbr": "Orlando",
    "stateName": "Florida",
    "stateAbbr": "FL",
    "countryName": "United States",
    "countryCode2": "US",
    "countryCode3": "USA",
    "countryIoc": "USA"
  },
  "clubMembers": [
    {
      "memberId": 1293,
      "clubMemberRoleId": 2,
      "firstName": "Pro Plus",
      "lastName": "Subscription",
      "intialJoinDate": "2018-05-15T22:18:29",
      "role": "Admin",
      "clubMemberTypeId": 2,
      "isPower": false,
      "isPoweredByClub": false,
      "isPoweredBySubscription": true,
      "location": "Palo Alto, CA",
      "gender": "M",
      "playerId": null,
      "singlesUtr": null,
      "ratingStatusSingles": null,
      "doublesUtr": null,
      "ratingStatusDoubles": null,
      "myUtrSingles": null,
      "myUtrDoubles": null,
      "myUtrSinglesReliability": null,
      "myUtrDoublesReliability": null,
      "myUtrStatusSingles": null,
      "myUtrStatusDoubles": null,
      "myUtrSinglesStatusValue": null,
      "myUtrDoublesStatusValue": null,
      "nationality": null,
      "ratingChoice": null,
      "playerProfileImages": {
        "default": null,
        "thumbnail": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        },
        "card": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        },
        "profile": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        },
        "icon": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        }
      },
      "displayName": "Pro Plus Subscription",
      "isPro": false
    },
    {
      "memberId": 5850,
      "clubMemberRoleId": 1,
      "firstName": "Ryan",
      "lastName": "Ward",
      "intialJoinDate": "2018-05-14T02:44:13",
      "role": "Owner",
      "clubMemberTypeId": 2,
      "isPower": false,
      "isPoweredByClub": false,
      "isPoweredBySubscription": true,
      "location": "Orlando, FL",
      "gender": "M",
      "playerId": "1526515",
      "singlesUtr": "0",
      "ratingStatusSingles": "Unrated",
      "doublesUtr": "0",
      "ratingStatusDoubles": "Unrated",
      "myUtrSingles": 3,
      "myUtrDoubles": 3,
      "myUtrSinglesReliability": 0,
      "myUtrDoublesReliability": 0,
      "myUtrStatusSingles": "Unrated",
      "myUtrStatusDoubles": "Unrated",
      "myUtrSinglesStatusValue": 0,
      "myUtrDoublesStatusValue": 0,
      "nationality": "USA",
      "ratingChoice": null,
      "playerProfileImages": {
        "default": null,
        "thumbnail": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        },
        "card": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        },
        "profile": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        },
        "icon": {
          "oneX": null,
          "twoX": null,
          "threeX": null
        }
      },
      "displayName": "Ryan Ward",
      "isPro": false
    }
  ],
  "tmsEvents": [],
  "teamMatches": [],
  "currentMember": {
    "role": null,
    "clubMemberRequest": null
  },
  "formerClubMembers": null,
  "clubMemberRequests": [],
  "clubMemberInvites": null,
  "tmsPercentFee": null,
  "verificationApplicationStatus": "",
  "private": false,
  "tierType": {
    "id": 2,
    "name": "Pro",
    "maxOwners": 2,
    "maxMembers": 0,
    "maxOrganizers": 4,
    "enablePayments": true,
    "verificationAllowed": true,
    "canRunEvents": true,
    "canPostScores": true,
    "isSearchable": true,
    "isCollege": false,
    "isHighSchool": false,
    "permissionedTmsEventTypes": [
      {
        "id": 1,
        "value": "tournament",
        "label": "Tournament",
        "description": "Create draws types such as round robins, compass draws, and traditional formats"
      },
      {
        "id": 5,
        "value": "camp",
        "label": "Camp",
        "description": "Group players by UTR and post match play scores"
      },
      {
        "id": 6,
        "value": "clinic",
        "label": "Clinic",
        "description": "Group players by UTR during drills and match play"
      },
      {
        "id": 7,
        "value": "match_play",
        "label": "Match Play",
        "description": "Less structured schedule of play. Match players up when they arrive and post scores!"
      }
    ]
  },
  "statusType": {
    "id": 4,
    "value": "suspended",
    "label": "Suspended",
    "description": "Payment hasn't gone through past the 30 day grace period so now the account is suspended"
  },
  "clubType": null,
  "clubSubType": null,
  "tmsFeeMaximum": null,
  "verificationFee": null,
  "isTrialing": false,
  "trialEndDateUtc": null,
  "sponsorLogoUrl": null,
  "schoolProfile": null,
  "teamRoles": [],
  "currency": {
    "id": 1,
    "name": "Dollars",
    "abbreviation": "USD",
    "symbol": "$"
  },
  "clubImages": {
    "default": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg",
    "banner": {
      "oneX": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg?size=1X&type=banner",
      "twoX": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg?size=2X&type=banner",
      "threeX": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg?size=3X&type=banner"
    },
    "dashboard": {
      "oneX": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg?size=1X&type=dashboard",
      "twoX": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg?size=2X&type=dashboard",
      "threeX": "1/images/banner/72cf5930-2c1b-4a5f-8fab-33f9990c511d.jpg?size=3X&type=dashboard"
    }
  },
  "canRunEvents": true,
  "referralCode": "ryansten586",
  "clubPromoCreditBalance": {
    "balance": 0,
    "currency": {
      "id": 1,
      "name": "Dollars",
      "abbreviation": "USD",
      "symbol": "$"
    }
  },
  "profilePhotoUrl": null,
  "clubProfileImages": {
    "default": null,
    "thumbnail": {
      "oneX": null,
      "twoX": null,
      "threeX": null
    },
    "card": {
      "oneX": null,
      "twoX": null,
      "threeX": null
    },
    "profile": {
      "oneX": null,
      "twoX": null,
      "threeX": null
    },
    "icon": {
      "oneX": null,
      "twoX": null,
      "threeX": null
    }
  },
  "maxPowerUsers": 0,
  "currentPowerUsers": 0,
  "clubContract": null,
  "upcomingEvents": [],
  "recentEvents": [],
  "refereeBonus": null,
  "referrerBonus": null,
  "lastEventIds": {
    "1": 582
  }
}

School Roster

Get roster for a high school or college.

GET https://www.myutr.com/api/v1/club/{club_id}/school

Parameter Type Required? Description
Club ID Integer Required The Club ID can be obtained using a club search or from a club URL on the Universal Tennis website.

[
  {
    "memberId": 10412,
    "clubMemberRoleId": 1,
    "firstName": "Kelly",
    "lastName": "Langdon",
    "intialJoinDate": "2019-01-10T18:53:34",
    "role": "Owner",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": true,
    "location": "Grapevine, TX",
    "gender": "M",
    "playerId": "1562473",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 1,
    "myUtrDoubles": 1,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Kelly Langdon",
    "isPro": false
  },
  {
    "memberId": 239593,
    "clubMemberRoleId": 3,
    "firstName": "Adam ",
    "lastName": "Ajam",
    "intialJoinDate": "2019-08-16T15:29:33",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "1572429",
    "singlesUtr": "2.37114844365187",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 2.371148443651868,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Adam  Ajam",
    "isPro": false
  },
  {
    "memberId": 131852,
    "clubMemberRoleId": 3,
    "firstName": "Alec",
    "lastName": "Farris",
    "intialJoinDate": "2019-01-24T21:45:28",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "286483",
    "singlesUtr": "6.765528708763",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "5.92543948185383",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 6.765528708763,
    "myUtrDoubles": 5.925439481853834,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Alec Farris",
    "isPro": false
  },
  {
    "memberId": 240097,
    "clubMemberRoleId": 3,
    "firstName": "Anshika ",
    "lastName": "Kataria",
    "intialJoinDate": "2019-08-16T17:13:42",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "F",
    "playerId": "1573301",
    "singlesUtr": "1",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "4.39151482907371",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 1,
    "myUtrDoubles": 4.391514829073706,
    "myUtrSinglesReliability": 0.4,
    "myUtrDoublesReliability": 0.4,
    "myUtrStatusSingles": "Projected",
    "myUtrStatusDoubles": "Projected",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Anshika  Kataria",
    "isPro": false
  },
  {
    "memberId": 239821,
    "clubMemberRoleId": 3,
    "firstName": "Aryan",
    "lastName": "Parikh",
    "intialJoinDate": "2019-08-16T17:29:30",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "1572921",
    "singlesUtr": "4.07397959265908",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 4,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 4.866621971130371,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Projected",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 2,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Aryan Parikh",
    "isPro": false
  },
  {
    "memberId": 239589,
    "clubMemberRoleId": 3,
    "firstName": "Asa",
    "lastName": "McCann",
    "intialJoinDate": "2019-08-15T18:15:42",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "811564",
    "singlesUtr": "3.5051270628731",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 3.5051270628730973,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Asa McCann",
    "isPro": false
  },
  {
    "memberId": 239604,
    "clubMemberRoleId": 3,
    "firstName": "Ashton",
    "lastName": "Norrell",
    "intialJoinDate": "2019-08-15T18:21:44",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "1572683",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 0,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Ashton Norrell",
    "isPro": false
  },
  {
    "memberId": 235765,
    "clubMemberRoleId": 3,
    "firstName": "Audrey",
    "lastName": "Cramer",
    "intialJoinDate": "2019-08-31T21:21:38",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "1553241",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 5,
    "myUtrDoubles": 5,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Audrey Cramer",
    "isPro": false
  },
  {
    "memberId": 240104,
    "clubMemberRoleId": 3,
    "firstName": "Audrey",
    "lastName": "Cramer",
    "intialJoinDate": "2019-08-16T18:26:51",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "1573320",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 0,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Audrey Cramer",
    "isPro": false
  },
  {
    "memberId": 34193,
    "clubMemberRoleId": 3,
    "firstName": "Beau",
    "lastName": "Lin",
    "intialJoinDate": "2019-01-21T20:53:23",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "182038",
    "singlesUtr": "8.67334015277329",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "7.13163741266363",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 8.67334015277329,
    "myUtrDoubles": 7.13163741266363,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Beau Lin",
    "isPro": false
  },
  {
    "memberId": 239601,
    "clubMemberRoleId": 3,
    "firstName": "Ben",
    "lastName": "Esquivel",
    "intialJoinDate": "2019-08-15T18:19:12",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "1572633",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 0,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Ben Esquivel",
    "isPro": false
  },
  {
    "memberId": 239916,
    "clubMemberRoleId": 3,
    "firstName": "Ben",
    "lastName": "Dietrich",
    "intialJoinDate": "2019-08-16T17:11:43",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Copper Canyon, TX",
    "gender": "M",
    "playerId": "1573104",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 0,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Ben Dietrich",
    "isPro": false
  },
  {
    "memberId": 170304,
    "clubMemberRoleId": 3,
    "firstName": "Blake",
    "lastName": "Stevenson",
    "intialJoinDate": "2019-07-23T23:46:49",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": true,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "811609",
    "singlesUtr": "2.40119483266454",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 2.76,
    "myUtrDoubles": 12,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 3,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "VerifiedSinglesUTR",
    "playerProfileImages": {
      "default": "113963/images/profile/6f5318c5-84c3-4a0b-a770-f31e920e70b8.png",
      "thumbnail": {
        "oneX": "113963/images/profile/6f5318c5-84c3-4a0b-a770-f31e920e70b8.png?size=1X&type=thumbnail",
        "twoX": "113963/images/profile/6f5318c5-84c3-4a0b-a770-f31e920e70b8.png?size=2X&type=thumbnail",
        "threeX": "113963/images/profile/6f5318c5-84c3-4a0b-a770-f31e920e70b8.png?size=3X&type=thumbnail"
      },
      "card": {
        "oneX": "113963/images/profile/6f5318c5-84c3-4a0b-a770-f31e920e70b8.png?size=1X&type=card",
        "twoX": "113963/images/profile/6f5318c5-84c3-4a0b-a770-f31e920e70b8.png?size=2X&type=card",
        "threeX": "113963/images/profile/6f5318c5-84c3-4a0b-a770-f31e920e70b8.png?size=3X&type=card"
      },
      "profile": {
        "oneX": "113963/images/profile/6f5318c5-84c3-4a0b-a770-f31e920e70b8.png?size=1X&type=profile",
        "twoX": "113963/images/profile/6f5318c5-84c3-4a0b-a770-f31e920e70b8.png?size=2X&type=profile",
        "threeX": "113963/images/profile/6f5318c5-84c3-4a0b-a770-f31e920e70b8.png?size=3X&type=profile"
      },
      "icon": {
        "oneX": "113963/images/profile/6f5318c5-84c3-4a0b-a770-f31e920e70b8.png?size=1X&type=icon",
        "twoX": "113963/images/profile/6f5318c5-84c3-4a0b-a770-f31e920e70b8.png?size=2X&type=icon",
        "threeX": "113963/images/profile/6f5318c5-84c3-4a0b-a770-f31e920e70b8.png?size=3X&type=icon"
      }
    },
    "displayName": "Blake Stevenson",
    "isPro": false
  },
  {
    "memberId": 163543,
    "clubMemberRoleId": 3,
    "firstName": "Carson",
    "lastName": "Fisher",
    "intialJoinDate": "2019-01-29T21:20:11",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "TX",
    "gender": "M",
    "playerId": "250857",
    "singlesUtr": "4.93074486470126",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "4.34821728985608",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 4.930744864701262,
    "myUtrDoubles": 4.34821728985608,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 2.4,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Projected",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "VerifiedSinglesUTR",
    "playerProfileImages": {
      "default": "107949/images/profile/eb6a4f1a-4737-4dff-9962-8f81f053a419.jpg",
      "thumbnail": {
        "oneX": "107949/images/profile/eb6a4f1a-4737-4dff-9962-8f81f053a419.jpg?size=1X&type=thumbnail",
        "twoX": "107949/images/profile/eb6a4f1a-4737-4dff-9962-8f81f053a419.jpg?size=2X&type=thumbnail",
        "threeX": "107949/images/profile/eb6a4f1a-4737-4dff-9962-8f81f053a419.jpg?size=3X&type=thumbnail"
      },
      "card": {
        "oneX": "107949/images/profile/eb6a4f1a-4737-4dff-9962-8f81f053a419.jpg?size=1X&type=card",
        "twoX": "107949/images/profile/eb6a4f1a-4737-4dff-9962-8f81f053a419.jpg?size=2X&type=card",
        "threeX": "107949/images/profile/eb6a4f1a-4737-4dff-9962-8f81f053a419.jpg?size=3X&type=card"
      },
      "profile": {
        "oneX": "107949/images/profile/eb6a4f1a-4737-4dff-9962-8f81f053a419.jpg?size=1X&type=profile",
        "twoX": "107949/images/profile/eb6a4f1a-4737-4dff-9962-8f81f053a419.jpg?size=2X&type=profile",
        "threeX": "107949/images/profile/eb6a4f1a-4737-4dff-9962-8f81f053a419.jpg?size=3X&type=profile"
      },
      "icon": {
        "oneX": "107949/images/profile/eb6a4f1a-4737-4dff-9962-8f81f053a419.jpg?size=1X&type=icon",
        "twoX": "107949/images/profile/eb6a4f1a-4737-4dff-9962-8f81f053a419.jpg?size=2X&type=icon",
        "threeX": "107949/images/profile/eb6a4f1a-4737-4dff-9962-8f81f053a419.jpg?size=3X&type=icon"
      }
    },
    "displayName": "Carson Fisher",
    "isPro": false
  },
  {
    "memberId": 218349,
    "clubMemberRoleId": 3,
    "firstName": "Cody",
    "lastName": "Smiley",
    "intialJoinDate": "2019-08-15T18:10:00",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "1492809",
    "singlesUtr": "3.36095387380566",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 8,
    "myUtrDoubles": 8,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Cody Smiley",
    "isPro": false
  },
  {
    "memberId": 147772,
    "clubMemberRoleId": 3,
    "firstName": "Connor",
    "lastName": "Sonneborn",
    "intialJoinDate": "2019-01-20T01:43:47",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": true,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "367630",
    "singlesUtr": "4.15626848383369",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "3.3772656424934",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 7,
    "myUtrDoubles": 7,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": "94024/images/profile/8a40d43c-56cd-40fa-b504-ad09a90d18e4.jpg",
      "thumbnail": {
        "oneX": "94024/images/profile/8a40d43c-56cd-40fa-b504-ad09a90d18e4.jpg?size=1X&type=thumbnail",
        "twoX": "94024/images/profile/8a40d43c-56cd-40fa-b504-ad09a90d18e4.jpg?size=2X&type=thumbnail",
        "threeX": "94024/images/profile/8a40d43c-56cd-40fa-b504-ad09a90d18e4.jpg?size=3X&type=thumbnail"
      },
      "card": {
        "oneX": "94024/images/profile/8a40d43c-56cd-40fa-b504-ad09a90d18e4.jpg?size=1X&type=card",
        "twoX": "94024/images/profile/8a40d43c-56cd-40fa-b504-ad09a90d18e4.jpg?size=2X&type=card",
        "threeX": "94024/images/profile/8a40d43c-56cd-40fa-b504-ad09a90d18e4.jpg?size=3X&type=card"
      },
      "profile": {
        "oneX": "94024/images/profile/8a40d43c-56cd-40fa-b504-ad09a90d18e4.jpg?size=1X&type=profile",
        "twoX": "94024/images/profile/8a40d43c-56cd-40fa-b504-ad09a90d18e4.jpg?size=2X&type=profile",
        "threeX": "94024/images/profile/8a40d43c-56cd-40fa-b504-ad09a90d18e4.jpg?size=3X&type=profile"
      },
      "icon": {
        "oneX": "94024/images/profile/8a40d43c-56cd-40fa-b504-ad09a90d18e4.jpg?size=1X&type=icon",
        "twoX": "94024/images/profile/8a40d43c-56cd-40fa-b504-ad09a90d18e4.jpg?size=2X&type=icon",
        "threeX": "94024/images/profile/8a40d43c-56cd-40fa-b504-ad09a90d18e4.jpg?size=3X&type=icon"
      }
    },
    "displayName": "Connor Sonneborn",
    "isPro": false
  },
  {
    "memberId": 240098,
    "clubMemberRoleId": 3,
    "firstName": "Darby",
    "lastName": "Denkhoff",
    "intialJoinDate": "2019-08-16T17:10:48",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "1573300",
    "singlesUtr": "1.16791708259866",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 5,
    "myUtrDoubles": 5,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "",
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Darby Denkhoff",
    "isPro": false
  },
  {
    "memberId": 102314,
    "clubMemberRoleId": 3,
    "firstName": "Edward",
    "lastName": "Heckman",
    "intialJoinDate": "2019-02-18T18:31:11",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": true,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "908913",
    "singlesUtr": "7.13190916484873",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "5.78173028401441",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 7.131909164848733,
    "myUtrDoubles": 5.781730284014405,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "VerifiedSinglesUTR",
    "playerProfileImages": {
      "default": "38376/images/profile/38bd8c78-534c-46ee-90b0-3443e7b08ee4.jpg",
      "thumbnail": {
        "oneX": "38376/images/profile/38bd8c78-534c-46ee-90b0-3443e7b08ee4.jpg?size=1X&type=thumbnail",
        "twoX": "38376/images/profile/38bd8c78-534c-46ee-90b0-3443e7b08ee4.jpg?size=2X&type=thumbnail",
        "threeX": "38376/images/profile/38bd8c78-534c-46ee-90b0-3443e7b08ee4.jpg?size=3X&type=thumbnail"
      },
      "card": {
        "oneX": "38376/images/profile/38bd8c78-534c-46ee-90b0-3443e7b08ee4.jpg?size=1X&type=card",
        "twoX": "38376/images/profile/38bd8c78-534c-46ee-90b0-3443e7b08ee4.jpg?size=2X&type=card",
        "threeX": "38376/images/profile/38bd8c78-534c-46ee-90b0-3443e7b08ee4.jpg?size=3X&type=card"
      },
      "profile": {
        "oneX": "38376/images/profile/38bd8c78-534c-46ee-90b0-3443e7b08ee4.jpg?size=1X&type=profile",
        "twoX": "38376/images/profile/38bd8c78-534c-46ee-90b0-3443e7b08ee4.jpg?size=2X&type=profile",
        "threeX": "38376/images/profile/38bd8c78-534c-46ee-90b0-3443e7b08ee4.jpg?size=3X&type=profile"
      },
      "icon": {
        "oneX": "38376/images/profile/38bd8c78-534c-46ee-90b0-3443e7b08ee4.jpg?size=1X&type=icon",
        "twoX": "38376/images/profile/38bd8c78-534c-46ee-90b0-3443e7b08ee4.jpg?size=2X&type=icon",
        "threeX": "38376/images/profile/38bd8c78-534c-46ee-90b0-3443e7b08ee4.jpg?size=3X&type=icon"
      }
    },
    "displayName": "Edward Heckman",
    "isPro": false
  },
  {
    "memberId": 139955,
    "clubMemberRoleId": 3,
    "firstName": "Elijah",
    "lastName": "Nunley",
    "intialJoinDate": "2019-01-18T21:49:27",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": true,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "359884",
    "singlesUtr": "5.84292106314497",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "4.03550610506789",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 5.842921063144973,
    "myUtrDoubles": 4.035506105067892,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "",
    "playerProfileImages": {
      "default": "87827/images/profile/51b52d0e-29eb-4e03-8048-985cb405ff71.jpg",
      "thumbnail": {
        "oneX": "87827/images/profile/51b52d0e-29eb-4e03-8048-985cb405ff71.jpg?size=1X&type=thumbnail",
        "twoX": "87827/images/profile/51b52d0e-29eb-4e03-8048-985cb405ff71.jpg?size=2X&type=thumbnail",
        "threeX": "87827/images/profile/51b52d0e-29eb-4e03-8048-985cb405ff71.jpg?size=3X&type=thumbnail"
      },
      "card": {
        "oneX": "87827/images/profile/51b52d0e-29eb-4e03-8048-985cb405ff71.jpg?size=1X&type=card",
        "twoX": "87827/images/profile/51b52d0e-29eb-4e03-8048-985cb405ff71.jpg?size=2X&type=card",
        "threeX": "87827/images/profile/51b52d0e-29eb-4e03-8048-985cb405ff71.jpg?size=3X&type=card"
      },
      "profile": {
        "oneX": "87827/images/profile/51b52d0e-29eb-4e03-8048-985cb405ff71.jpg?size=1X&type=profile",
        "twoX": "87827/images/profile/51b52d0e-29eb-4e03-8048-985cb405ff71.jpg?size=2X&type=profile",
        "threeX": "87827/images/profile/51b52d0e-29eb-4e03-8048-985cb405ff71.jpg?size=3X&type=profile"
      },
      "icon": {
        "oneX": "87827/images/profile/51b52d0e-29eb-4e03-8048-985cb405ff71.jpg?size=1X&type=icon",
        "twoX": "87827/images/profile/51b52d0e-29eb-4e03-8048-985cb405ff71.jpg?size=2X&type=icon",
        "threeX": "87827/images/profile/51b52d0e-29eb-4e03-8048-985cb405ff71.jpg?size=3X&type=icon"
      }
    },
    "displayName": "Elijah Nunley",
    "isPro": false
  },
  {
    "memberId": 134830,
    "clubMemberRoleId": 3,
    "firstName": "Ella",
    "lastName": "Loxley",
    "intialJoinDate": "2019-01-24T21:22:33",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "F",
    "playerId": "217362",
    "singlesUtr": "5.64273240230629",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "5.72656233893093",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 5.642732402306286,
    "myUtrDoubles": 5.726562338930934,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "",
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Ella Loxley",
    "isPro": false
  },
  {
    "memberId": 60390,
    "clubMemberRoleId": 3,
    "firstName": "Ethan",
    "lastName": "Rice",
    "intialJoinDate": "2019-01-24T21:45:15",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "204897",
    "singlesUtr": "7.02795521022143",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "6.36306044289456",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 7.0279552102214256,
    "myUtrDoubles": 6.363060442894559,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Ethan Rice",
    "isPro": false
  },
  {
    "memberId": 58129,
    "clubMemberRoleId": 3,
    "firstName": "Haley",
    "lastName": "Hughes",
    "intialJoinDate": "2019-01-19T01:54:40",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "F",
    "playerId": "197848",
    "singlesUtr": "4.46226303535974",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "5.78765327291458",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 4.462263035359744,
    "myUtrDoubles": 5.787653272914583,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Haley Hughes",
    "isPro": false
  },
  {
    "memberId": 239597,
    "clubMemberRoleId": 3,
    "firstName": "Hayden ",
    "lastName": "Trapnell",
    "intialJoinDate": "2019-08-16T17:23:18",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "359883",
    "singlesUtr": "3.29853528237116",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 3.2985352823711613,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 1.6,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Projected",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Hayden  Trapnell",
    "isPro": false
  },
  {
    "memberId": 71272,
    "clubMemberRoleId": 3,
    "firstName": "Isabella",
    "lastName": "Ditzler",
    "intialJoinDate": "2019-01-24T21:28:36",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "111211",
    "singlesUtr": "6.93654233342763",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "6.16254041941974",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 6.93654233342763,
    "myUtrDoubles": 6.16254041941974,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": "17860/images/profile/43bd9f36-eca5-4c07-8edb-b5e911887675.jpg",
      "thumbnail": {
        "oneX": "17860/images/profile/43bd9f36-eca5-4c07-8edb-b5e911887675.jpg?size=1X&type=thumbnail",
        "twoX": "17860/images/profile/43bd9f36-eca5-4c07-8edb-b5e911887675.jpg?size=2X&type=thumbnail",
        "threeX": "17860/images/profile/43bd9f36-eca5-4c07-8edb-b5e911887675.jpg?size=3X&type=thumbnail"
      },
      "card": {
        "oneX": "17860/images/profile/43bd9f36-eca5-4c07-8edb-b5e911887675.jpg?size=1X&type=card",
        "twoX": "17860/images/profile/43bd9f36-eca5-4c07-8edb-b5e911887675.jpg?size=2X&type=card",
        "threeX": "17860/images/profile/43bd9f36-eca5-4c07-8edb-b5e911887675.jpg?size=3X&type=card"
      },
      "profile": {
        "oneX": "17860/images/profile/43bd9f36-eca5-4c07-8edb-b5e911887675.jpg?size=1X&type=profile",
        "twoX": "17860/images/profile/43bd9f36-eca5-4c07-8edb-b5e911887675.jpg?size=2X&type=profile",
        "threeX": "17860/images/profile/43bd9f36-eca5-4c07-8edb-b5e911887675.jpg?size=3X&type=profile"
      },
      "icon": {
        "oneX": "17860/images/profile/43bd9f36-eca5-4c07-8edb-b5e911887675.jpg?size=1X&type=icon",
        "twoX": "17860/images/profile/43bd9f36-eca5-4c07-8edb-b5e911887675.jpg?size=2X&type=icon",
        "threeX": "17860/images/profile/43bd9f36-eca5-4c07-8edb-b5e911887675.jpg?size=3X&type=icon"
      }
    },
    "displayName": "Isabella Ditzler",
    "isPro": false
  },
  {
    "memberId": 240101,
    "clubMemberRoleId": 3,
    "firstName": "Jacelyn ",
    "lastName": "Sanchez ",
    "intialJoinDate": "2019-08-16T17:13:44",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "1573303",
    "singlesUtr": "1.99569399664092",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "4.39151482907371",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 1.9956939966409222,
    "myUtrDoubles": 4.391514829073706,
    "myUtrSinglesReliability": 5.6000000000000005,
    "myUtrDoublesReliability": 0.4,
    "myUtrStatusSingles": "Projected",
    "myUtrStatusDoubles": "Projected",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Jacelyn  Sanchez ",
    "isPro": false
  },
  {
    "memberId": 239592,
    "clubMemberRoleId": 3,
    "firstName": "Jacob",
    "lastName": "Sewell",
    "intialJoinDate": "2019-08-16T17:23:42",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "1572450",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 0,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Jacob Sewell",
    "isPro": false
  },
  {
    "memberId": 204913,
    "clubMemberRoleId": 3,
    "firstName": "Jacob",
    "lastName": "Gooding",
    "intialJoinDate": "2019-09-20T15:48:41",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "1402186",
    "singlesUtr": "1.24836976695934",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 3,
    "myUtrDoubles": 3,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "VerifiedSinglesUTR",
    "playerProfileImages": {
      "default": "145834/images/profile/d721da09-d84e-4690-b273-e8fa7d4d1a95.png",
      "thumbnail": {
        "oneX": "145834/images/profile/d721da09-d84e-4690-b273-e8fa7d4d1a95.png?size=1X&type=thumbnail",
        "twoX": "145834/images/profile/d721da09-d84e-4690-b273-e8fa7d4d1a95.png?size=2X&type=thumbnail",
        "threeX": "145834/images/profile/d721da09-d84e-4690-b273-e8fa7d4d1a95.png?size=3X&type=thumbnail"
      },
      "card": {
        "oneX": "145834/images/profile/d721da09-d84e-4690-b273-e8fa7d4d1a95.png?size=1X&type=card",
        "twoX": "145834/images/profile/d721da09-d84e-4690-b273-e8fa7d4d1a95.png?size=2X&type=card",
        "threeX": "145834/images/profile/d721da09-d84e-4690-b273-e8fa7d4d1a95.png?size=3X&type=card"
      },
      "profile": {
        "oneX": "145834/images/profile/d721da09-d84e-4690-b273-e8fa7d4d1a95.png?size=1X&type=profile",
        "twoX": "145834/images/profile/d721da09-d84e-4690-b273-e8fa7d4d1a95.png?size=2X&type=profile",
        "threeX": "145834/images/profile/d721da09-d84e-4690-b273-e8fa7d4d1a95.png?size=3X&type=profile"
      },
      "icon": {
        "oneX": "145834/images/profile/d721da09-d84e-4690-b273-e8fa7d4d1a95.png?size=1X&type=icon",
        "twoX": "145834/images/profile/d721da09-d84e-4690-b273-e8fa7d4d1a95.png?size=2X&type=icon",
        "threeX": "145834/images/profile/d721da09-d84e-4690-b273-e8fa7d4d1a95.png?size=3X&type=icon"
      }
    },
    "displayName": "Jacob Gooding",
    "isPro": false
  },
  {
    "memberId": 39095,
    "clubMemberRoleId": 3,
    "firstName": "Jacob",
    "lastName": "Smith",
    "intialJoinDate": "2019-01-19T08:42:53",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Double Oak, TX",
    "gender": "M",
    "playerId": "207013",
    "singlesUtr": "7.2730331474575",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "5.88787679169246",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 7.273033147457496,
    "myUtrDoubles": 5.887876791692456,
    "myUtrSinglesReliability": 0.4,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Projected",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Jacob Smith",
    "isPro": false
  },
  {
    "memberId": 133511,
    "clubMemberRoleId": 3,
    "firstName": "Jacqueline",
    "lastName": "Rodgers",
    "intialJoinDate": "2019-01-20T17:13:55",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "F",
    "playerId": "367620",
    "singlesUtr": "2.59737180854318",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "3.93374075811657",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 2.59737180854318,
    "myUtrDoubles": 3.9337407581165658,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Jacqueline Rodgers",
    "isPro": false
  },
  {
    "memberId": 239590,
    "clubMemberRoleId": 3,
    "firstName": "James",
    "lastName": "Eade",
    "intialJoinDate": "2019-08-15T18:19:06",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "269197",
    "singlesUtr": "3.1899800444921",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 3.189980044492103,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 3.5999999999999996,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Projected",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "SinglesUTR",
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "James Eade",
    "isPro": false
  },
  {
    "memberId": 224555,
    "clubMemberRoleId": 3,
    "firstName": "JARED",
    "lastName": "ROHR",
    "intialJoinDate": "2019-08-16T17:22:57",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "1515774",
    "singlesUtr": "1",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 6,
    "myUtrDoubles": 6,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "JARED ROHR",
    "isPro": false
  },
  {
    "memberId": 229309,
    "clubMemberRoleId": 3,
    "firstName": "Javier",
    "lastName": "Buendia Lanchas",
    "intialJoinDate": "2019-08-18T21:03:37",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "1616360",
    "singlesUtr": "4.4442495106728",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 7,
    "myUtrDoubles": 7,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "SinglesUTR",
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Javier Buendia Lanchas",
    "isPro": false
  },
  {
    "memberId": 32762,
    "clubMemberRoleId": 3,
    "firstName": "Jonah ",
    "lastName": "Barth",
    "intialJoinDate": "2019-01-20T22:19:10",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "111998",
    "singlesUtr": "6.7985787483172",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "5.85799284408876",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 6.798578748317197,
    "myUtrDoubles": 5.857992844088756,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Jonah  Barth",
    "isPro": false
  },
  {
    "memberId": 239602,
    "clubMemberRoleId": 3,
    "firstName": "Joshua ",
    "lastName": "Nownes ",
    "intialJoinDate": "2019-08-15T18:20:04",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "1572658",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 0,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Joshua  Nownes ",
    "isPro": false
  },
  {
    "memberId": 143814,
    "clubMemberRoleId": 3,
    "firstName": "Katherine",
    "lastName": "RICHOUX",
    "intialJoinDate": "2019-02-11T00:58:00",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "F",
    "playerId": "111209",
    "singlesUtr": "6.30997009434534",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "6.15424198134913",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 6.309970094345336,
    "myUtrDoubles": 6.154241981349128,
    "myUtrSinglesReliability": 2.8000000000000003,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Projected",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Katherine RICHOUX",
    "isPro": false
  },
  {
    "memberId": 240102,
    "clubMemberRoleId": 3,
    "firstName": "kayla ",
    "lastName": "davis ",
    "intialJoinDate": "2019-08-16T17:35:01",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "1573304",
    "singlesUtr": "2.46154006774556",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 2.46154006774556,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 0.4,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Projected",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "kayla  davis ",
    "isPro": false
  },
  {
    "memberId": 152467,
    "clubMemberRoleId": 3,
    "firstName": "Khoen",
    "lastName": "Gregory",
    "intialJoinDate": "2019-08-15T18:16:40",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "1601120",
    "singlesUtr": "3.28652843555524",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "2.65145799870927",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 3.2865284355552413,
    "myUtrDoubles": 2.65145799870927,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 0.4,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Projected",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "SinglesUTR",
    "playerProfileImages": {
      "default": "98177/images/profile/abb7cfe7-b2f8-42b2-80b9-706f7ba24581.jpg",
      "thumbnail": {
        "oneX": "98177/images/profile/abb7cfe7-b2f8-42b2-80b9-706f7ba24581.jpg?size=1X&type=thumbnail",
        "twoX": "98177/images/profile/abb7cfe7-b2f8-42b2-80b9-706f7ba24581.jpg?size=2X&type=thumbnail",
        "threeX": "98177/images/profile/abb7cfe7-b2f8-42b2-80b9-706f7ba24581.jpg?size=3X&type=thumbnail"
      },
      "card": {
        "oneX": "98177/images/profile/abb7cfe7-b2f8-42b2-80b9-706f7ba24581.jpg?size=1X&type=card",
        "twoX": "98177/images/profile/abb7cfe7-b2f8-42b2-80b9-706f7ba24581.jpg?size=2X&type=card",
        "threeX": "98177/images/profile/abb7cfe7-b2f8-42b2-80b9-706f7ba24581.jpg?size=3X&type=card"
      },
      "profile": {
        "oneX": "98177/images/profile/abb7cfe7-b2f8-42b2-80b9-706f7ba24581.jpg?size=1X&type=profile",
        "twoX": "98177/images/profile/abb7cfe7-b2f8-42b2-80b9-706f7ba24581.jpg?size=2X&type=profile",
        "threeX": "98177/images/profile/abb7cfe7-b2f8-42b2-80b9-706f7ba24581.jpg?size=3X&type=profile"
      },
      "icon": {
        "oneX": "98177/images/profile/abb7cfe7-b2f8-42b2-80b9-706f7ba24581.jpg?size=1X&type=icon",
        "twoX": "98177/images/profile/abb7cfe7-b2f8-42b2-80b9-706f7ba24581.jpg?size=2X&type=icon",
        "threeX": "98177/images/profile/abb7cfe7-b2f8-42b2-80b9-706f7ba24581.jpg?size=3X&type=icon"
      }
    },
    "displayName": "Khoen Gregory",
    "isPro": false
  },
  {
    "memberId": 161464,
    "clubMemberRoleId": 3,
    "firstName": "Kiara",
    "lastName": "Berry",
    "intialJoinDate": "2019-01-22T13:07:19",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "157231",
    "singlesUtr": "4.17875244350497",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "7.02779022919676",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 4.17875244350497,
    "myUtrDoubles": 7.027790229196759,
    "myUtrSinglesReliability": 0.4,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Projected",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Kiara Berry",
    "isPro": false
  },
  {
    "memberId": 141686,
    "clubMemberRoleId": 3,
    "firstName": "Lillian",
    "lastName": "Ryan",
    "intialJoinDate": "2019-01-28T20:57:35",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "F",
    "playerId": "167388",
    "singlesUtr": "4.88362358700299",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "6.75520870440508",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 4.883623587002992,
    "myUtrDoubles": 6.755208704405082,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 3.2,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Projected",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Lillian Ryan",
    "isPro": false
  },
  {
    "memberId": 148381,
    "clubMemberRoleId": 3,
    "firstName": "Luke",
    "lastName": "Andrews",
    "intialJoinDate": "2019-01-18T18:37:55",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "359930",
    "singlesUtr": "2.84559711310244",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 2.8455971131024413,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Luke Andrews",
    "isPro": false
  },
  {
    "memberId": 134621,
    "clubMemberRoleId": 3,
    "firstName": "madison",
    "lastName": "friedman",
    "intialJoinDate": "2019-01-24T21:36:56",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "F",
    "playerId": "1156049",
    "singlesUtr": "4.76890220492862",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "5.34040757234143",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 5,
    "myUtrDoubles": 5,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "madison friedman",
    "isPro": false
  },
  {
    "memberId": 160571,
    "clubMemberRoleId": 3,
    "firstName": "Mahi",
    "lastName": "Athota",
    "intialJoinDate": "2019-01-18T21:40:28",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "293107",
    "singlesUtr": "2.02708928588053",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "2.87073424003574",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 2.027089285880534,
    "myUtrDoubles": 2.8707342400357416,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 3.2,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Projected",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Mahi Athota",
    "isPro": false
  },
  {
    "memberId": 105549,
    "clubMemberRoleId": 3,
    "firstName": "mary ann ",
    "lastName": "lu",
    "intialJoinDate": "2019-01-18T22:30:06",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "895251",
    "singlesUtr": "4.80517028486674",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "5.76326012593022",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 4.805170284866737,
    "myUtrDoubles": 5.763260125930216,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "mary ann  lu",
    "isPro": false
  },
  {
    "memberId": 110121,
    "clubMemberRoleId": 3,
    "firstName": "Mason",
    "lastName": "Cary",
    "intialJoinDate": "2019-01-28T20:49:51",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "240182",
    "singlesUtr": "6.44899086081919",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "5.70565731282188",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 6.448990860819193,
    "myUtrDoubles": 5.705657312821879,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": "44336/images/profile/a6e747ab-416e-4d29-a0ce-cfa1e1e69cf2.png",
      "thumbnail": {
        "oneX": "44336/images/profile/a6e747ab-416e-4d29-a0ce-cfa1e1e69cf2.png?size=1X&type=thumbnail",
        "twoX": "44336/images/profile/a6e747ab-416e-4d29-a0ce-cfa1e1e69cf2.png?size=2X&type=thumbnail",
        "threeX": "44336/images/profile/a6e747ab-416e-4d29-a0ce-cfa1e1e69cf2.png?size=3X&type=thumbnail"
      },
      "card": {
        "oneX": "44336/images/profile/a6e747ab-416e-4d29-a0ce-cfa1e1e69cf2.png?size=1X&type=card",
        "twoX": "44336/images/profile/a6e747ab-416e-4d29-a0ce-cfa1e1e69cf2.png?size=2X&type=card",
        "threeX": "44336/images/profile/a6e747ab-416e-4d29-a0ce-cfa1e1e69cf2.png?size=3X&type=card"
      },
      "profile": {
        "oneX": "44336/images/profile/a6e747ab-416e-4d29-a0ce-cfa1e1e69cf2.png?size=1X&type=profile",
        "twoX": "44336/images/profile/a6e747ab-416e-4d29-a0ce-cfa1e1e69cf2.png?size=2X&type=profile",
        "threeX": "44336/images/profile/a6e747ab-416e-4d29-a0ce-cfa1e1e69cf2.png?size=3X&type=profile"
      },
      "icon": {
        "oneX": "44336/images/profile/a6e747ab-416e-4d29-a0ce-cfa1e1e69cf2.png?size=1X&type=icon",
        "twoX": "44336/images/profile/a6e747ab-416e-4d29-a0ce-cfa1e1e69cf2.png?size=2X&type=icon",
        "threeX": "44336/images/profile/a6e747ab-416e-4d29-a0ce-cfa1e1e69cf2.png?size=3X&type=icon"
      }
    },
    "displayName": "Mason Cary",
    "isPro": false
  },
  {
    "memberId": 239598,
    "clubMemberRoleId": 3,
    "firstName": "Matthew",
    "lastName": "Huston",
    "intialJoinDate": "2019-08-15T18:19:20",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "1572453",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "1.54872939996454",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 0,
    "myUtrDoubles": 1.5487293999645373,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 3.5999999999999996,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Projected",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "VerifiedDoublesUTR",
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Matthew Huston",
    "isPro": false
  },
  {
    "memberId": 160630,
    "clubMemberRoleId": 3,
    "firstName": "Mihir",
    "lastName": "Cherukupalli",
    "intialJoinDate": "2019-01-19T02:33:08",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "1246390",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 5,
    "myUtrDoubles": 5,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Mihir Cherukupalli",
    "isPro": false
  },
  {
    "memberId": 143925,
    "clubMemberRoleId": 3,
    "firstName": "Molly",
    "lastName": "Dalglish",
    "intialJoinDate": "2019-01-28T20:59:13",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "F",
    "playerId": "182112",
    "singlesUtr": "4.65204996230117",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "5.64804829900539",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 4.652049962301174,
    "myUtrDoubles": 5.648048299005395,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Molly Dalglish",
    "isPro": false
  },
  {
    "memberId": 216520,
    "clubMemberRoleId": 3,
    "firstName": "Naseem",
    "lastName": "Rahman",
    "intialJoinDate": "2019-08-23T03:29:50",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "293883",
    "singlesUtr": "4.40660492106835",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "5.23053796621327",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 4.61,
    "myUtrDoubles": 5.23053796621327,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 4,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Projected",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "SinglesUTR",
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Naseem Rahman",
    "isPro": false
  },
  {
    "memberId": 239594,
    "clubMemberRoleId": 3,
    "firstName": "Pablo",
    "lastName": "Ruiz-Velasco",
    "intialJoinDate": "2019-08-16T17:25:18",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "1572421",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 2,
    "myUtrDoubles": 2,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "",
    "playerProfileImages": {
      "default": "183606/images/profile/3e151495-9783-456d-a293-1aad599a9747.png",
      "thumbnail": {
        "oneX": "183606/images/profile/3e151495-9783-456d-a293-1aad599a9747.png?size=1X&type=thumbnail",
        "twoX": "183606/images/profile/3e151495-9783-456d-a293-1aad599a9747.png?size=2X&type=thumbnail",
        "threeX": "183606/images/profile/3e151495-9783-456d-a293-1aad599a9747.png?size=3X&type=thumbnail"
      },
      "card": {
        "oneX": "183606/images/profile/3e151495-9783-456d-a293-1aad599a9747.png?size=1X&type=card",
        "twoX": "183606/images/profile/3e151495-9783-456d-a293-1aad599a9747.png?size=2X&type=card",
        "threeX": "183606/images/profile/3e151495-9783-456d-a293-1aad599a9747.png?size=3X&type=card"
      },
      "profile": {
        "oneX": "183606/images/profile/3e151495-9783-456d-a293-1aad599a9747.png?size=1X&type=profile",
        "twoX": "183606/images/profile/3e151495-9783-456d-a293-1aad599a9747.png?size=2X&type=profile",
        "threeX": "183606/images/profile/3e151495-9783-456d-a293-1aad599a9747.png?size=3X&type=profile"
      },
      "icon": {
        "oneX": "183606/images/profile/3e151495-9783-456d-a293-1aad599a9747.png?size=1X&type=icon",
        "twoX": "183606/images/profile/3e151495-9783-456d-a293-1aad599a9747.png?size=2X&type=icon",
        "threeX": "183606/images/profile/3e151495-9783-456d-a293-1aad599a9747.png?size=3X&type=icon"
      }
    },
    "displayName": "Pablo Ruiz-Velasco",
    "isPro": false
  },
  {
    "memberId": 196268,
    "clubMemberRoleId": 3,
    "firstName": "Ram",
    "lastName": "Mahavadi",
    "intialJoinDate": "2019-06-19T00:44:22",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "288503",
    "singlesUtr": "2.80251810310594",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 2.802518103105942,
    "myUtrDoubles": 0,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "VerifiedSinglesUTR",
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Ram Mahavadi",
    "isPro": false
  },
  {
    "memberId": 167808,
    "clubMemberRoleId": 3,
    "firstName": "Reese",
    "lastName": "Porter",
    "intialJoinDate": "2019-02-09T21:20:26",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "937277",
    "singlesUtr": "3.97275894200922",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "4.18767625906447",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 3.9727589420092166,
    "myUtrDoubles": 4.187676259064466,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Reese Porter",
    "isPro": false
  },
  {
    "memberId": 113322,
    "clubMemberRoleId": 3,
    "firstName": "Rishab",
    "lastName": "Deepak",
    "intialJoinDate": "2019-03-21T15:45:42",
    "role": "Member",
    "clubMemberTypeId": 1,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "377901",
    "singlesUtr": "5.06873992007356",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "3.79816461724008",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 5,
    "myUtrDoubles": 5,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Rishab Deepak",
    "isPro": false
  },
  {
    "memberId": 21196,
    "clubMemberRoleId": 3,
    "firstName": "Ryan",
    "lastName": "Mouakket",
    "intialJoinDate": "2019-01-18T22:06:23",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": true,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "1331685",
    "singlesUtr": "10.8043776885002",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "8.75541778625631",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 11,
    "myUtrDoubles": 11,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "VerifiedSinglesUTR",
    "playerProfileImages": {
      "default": "124442/images/profile/79caa335-269c-432e-931d-d50050425543.jpg",
      "thumbnail": {
        "oneX": "124442/images/profile/79caa335-269c-432e-931d-d50050425543.jpg?size=1X&type=thumbnail",
        "twoX": "124442/images/profile/79caa335-269c-432e-931d-d50050425543.jpg?size=2X&type=thumbnail",
        "threeX": "124442/images/profile/79caa335-269c-432e-931d-d50050425543.jpg?size=3X&type=thumbnail"
      },
      "card": {
        "oneX": "124442/images/profile/79caa335-269c-432e-931d-d50050425543.jpg?size=1X&type=card",
        "twoX": "124442/images/profile/79caa335-269c-432e-931d-d50050425543.jpg?size=2X&type=card",
        "threeX": "124442/images/profile/79caa335-269c-432e-931d-d50050425543.jpg?size=3X&type=card"
      },
      "profile": {
        "oneX": "124442/images/profile/79caa335-269c-432e-931d-d50050425543.jpg?size=1X&type=profile",
        "twoX": "124442/images/profile/79caa335-269c-432e-931d-d50050425543.jpg?size=2X&type=profile",
        "threeX": "124442/images/profile/79caa335-269c-432e-931d-d50050425543.jpg?size=3X&type=profile"
      },
      "icon": {
        "oneX": "124442/images/profile/79caa335-269c-432e-931d-d50050425543.jpg?size=1X&type=icon",
        "twoX": "124442/images/profile/79caa335-269c-432e-931d-d50050425543.jpg?size=2X&type=icon",
        "threeX": "124442/images/profile/79caa335-269c-432e-931d-d50050425543.jpg?size=3X&type=icon"
      }
    },
    "displayName": "Ryan Mouakket",
    "isPro": false
  },
  {
    "memberId": 93135,
    "clubMemberRoleId": 3,
    "firstName": "Sarah",
    "lastName": "Blumberg",
    "intialJoinDate": "2019-03-21T15:45:42",
    "role": "Member",
    "clubMemberTypeId": 1,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "293181",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "4.74630006614397",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 0,
    "myUtrDoubles": 4.746300066143973,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 1.2,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Projected",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": "30769/images/profile/8104afbe-bae8-4b55-bdad-5e65b4c79399.png",
      "thumbnail": {
        "oneX": "30769/images/profile/8104afbe-bae8-4b55-bdad-5e65b4c79399.png?size=1X&type=thumbnail",
        "twoX": "30769/images/profile/8104afbe-bae8-4b55-bdad-5e65b4c79399.png?size=2X&type=thumbnail",
        "threeX": "30769/images/profile/8104afbe-bae8-4b55-bdad-5e65b4c79399.png?size=3X&type=thumbnail"
      },
      "card": {
        "oneX": "30769/images/profile/8104afbe-bae8-4b55-bdad-5e65b4c79399.png?size=1X&type=card",
        "twoX": "30769/images/profile/8104afbe-bae8-4b55-bdad-5e65b4c79399.png?size=2X&type=card",
        "threeX": "30769/images/profile/8104afbe-bae8-4b55-bdad-5e65b4c79399.png?size=3X&type=card"
      },
      "profile": {
        "oneX": "30769/images/profile/8104afbe-bae8-4b55-bdad-5e65b4c79399.png?size=1X&type=profile",
        "twoX": "30769/images/profile/8104afbe-bae8-4b55-bdad-5e65b4c79399.png?size=2X&type=profile",
        "threeX": "30769/images/profile/8104afbe-bae8-4b55-bdad-5e65b4c79399.png?size=3X&type=profile"
      },
      "icon": {
        "oneX": "30769/images/profile/8104afbe-bae8-4b55-bdad-5e65b4c79399.png?size=1X&type=icon",
        "twoX": "30769/images/profile/8104afbe-bae8-4b55-bdad-5e65b4c79399.png?size=2X&type=icon",
        "threeX": "30769/images/profile/8104afbe-bae8-4b55-bdad-5e65b4c79399.png?size=3X&type=icon"
      }
    },
    "displayName": "Sarah Blumberg",
    "isPro": false
  },
  {
    "memberId": 163127,
    "clubMemberRoleId": 3,
    "firstName": "Sarah",
    "lastName": "Blumberg",
    "intialJoinDate": "2019-01-28T20:55:29",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "1254056",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 5,
    "myUtrDoubles": 5,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Sarah Blumberg",
    "isPro": false
  },
  {
    "memberId": 212148,
    "clubMemberRoleId": 3,
    "firstName": "Sophie-Grace",
    "lastName": "Fayard",
    "intialJoinDate": "2019-09-06T02:38:09",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "1453736",
    "singlesUtr": "3.28649361899468",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 5,
    "myUtrDoubles": 5,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Sophie-Grace Fayard",
    "isPro": false
  },
  {
    "memberId": 139468,
    "clubMemberRoleId": 3,
    "firstName": "Thomas",
    "lastName": "Mowery",
    "intialJoinDate": "2019-01-24T21:47:19",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "109653",
    "singlesUtr": "6.56690174297058",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "5.81642639914215",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 6.566901742970578,
    "myUtrDoubles": 5.816426399142145,
    "myUtrSinglesReliability": 6.4,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Projected",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Thomas Mowery",
    "isPro": false
  },
  {
    "memberId": 148552,
    "clubMemberRoleId": 3,
    "firstName": "Thomas",
    "lastName": "Kohn",
    "intialJoinDate": "2019-01-18T21:05:01",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "367637",
    "singlesUtr": "4.46333327781438",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "3.29400341192325",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 4.463333277814383,
    "myUtrDoubles": 3.2940034119232475,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 0.8,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Projected",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Thomas Kohn",
    "isPro": false
  },
  {
    "memberId": 239588,
    "clubMemberRoleId": 3,
    "firstName": "Wesley",
    "lastName": "Schiegg",
    "intialJoinDate": "2019-08-16T17:11:41",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Highland Village, TX",
    "gender": "M",
    "playerId": "1572341",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "0",
    "ratingStatusDoubles": "Unrated",
    "myUtrSingles": 2,
    "myUtrDoubles": 2,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Wesley Schiegg",
    "isPro": false
  },
  {
    "memberId": 42717,
    "clubMemberRoleId": 3,
    "firstName": "Whitney",
    "lastName": "Jordan",
    "intialJoinDate": "2019-06-12T00:58:44",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": true,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "505356",
    "singlesUtr": "2.69956616366314",
    "ratingStatusSingles": "Projected",
    "doublesUtr": "3.40956829334191",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 2.699566163663136,
    "myUtrDoubles": 3.4095682933419056,
    "myUtrSinglesReliability": 0.4,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Projected",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Whitney Jordan",
    "isPro": false
  },
  {
    "memberId": 239595,
    "clubMemberRoleId": 3,
    "firstName": "William",
    "lastName": "Huston",
    "intialJoinDate": "2019-08-16T17:10:33",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "1572601",
    "singlesUtr": "0",
    "ratingStatusSingles": "Unrated",
    "doublesUtr": "1.54872939996454",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 6,
    "myUtrDoubles": 6,
    "myUtrSinglesReliability": 0,
    "myUtrDoublesReliability": 0,
    "myUtrStatusSingles": "Unrated",
    "myUtrStatusDoubles": "Unrated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": "DoublesUTR",
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "William Huston",
    "isPro": false
  },
  {
    "memberId": 112812,
    "clubMemberRoleId": 3,
    "firstName": "Zebadiah ",
    "lastName": "Collins",
    "intialJoinDate": "2019-01-24T21:24:57",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "M",
    "playerId": "1635958",
    "singlesUtr": "8.88524864207781",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "8.97298595597692",
    "ratingStatusDoubles": "Rated",
    "myUtrSingles": 8.885248642077809,
    "myUtrDoubles": 8.972985955976917,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 10,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Rated",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": null,
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "Zebadiah  Collins",
    "isPro": false
  },
  {
    "memberId": 160637,
    "clubMemberRoleId": 3,
    "firstName": "zoe",
    "lastName": "piazza",
    "intialJoinDate": "2019-01-19T03:02:02",
    "role": "Member",
    "clubMemberTypeId": 2,
    "isPower": false,
    "isPoweredByClub": false,
    "isPoweredBySubscription": false,
    "location": "Flower Mound, TX",
    "gender": "F",
    "playerId": "367619",
    "singlesUtr": "2.25324541955606",
    "ratingStatusSingles": "Rated",
    "doublesUtr": "2.9230996382096",
    "ratingStatusDoubles": "Projected",
    "myUtrSingles": 2.2532454195560594,
    "myUtrDoubles": 2.9230996382095955,
    "myUtrSinglesReliability": 10,
    "myUtrDoublesReliability": 2.8000000000000003,
    "myUtrStatusSingles": "Rated",
    "myUtrStatusDoubles": "Projected",
    "myUtrSinglesStatusValue": 0,
    "myUtrDoublesStatusValue": 0,
    "nationality": "USA",
    "ratingChoice": null,
    "playerProfileImages": {
      "default": null,
      "thumbnail": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "card": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "profile": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      },
      "icon": {
        "oneX": null,
        "twoX": null,
        "threeX": null
      }
    },
    "displayName": "zoe piazza",
    "isPro": false
  }
]

Event Information

Get information about an event.

GET https://www.myutr.com/api/v1/tms/events/{event_id}

Parameter Type Required? Description
User ID integer Required The Event ID can be obtained using a event search or from an event URL on the Universal Tennis website.

too long

Search All

Get search results from all categories. It is recommended to use the specific search function for your use if possible to improve loading times.

GET https://www.myutr.com/api/v2/search

Parameter Type Required? Description
Query String Required No crazy IDs here - just pass your search query using ?query=. Your query should be URL encoded.

too long

Search Players

Get information about an event.

GET https://www.myutr.com/api/v2/search/players?query={query}&top={numresults}

Parameter Type Required? Description
Query String Required No crazy IDs here - just pass your search query using ?query=. Your query should be URL encoded.
Top integer Optional Number of results to display

too long

Search Events

Get information about an event.

GET https://www.myutr.com/api/v2/search/events

Parameter Type Required? Description
Query String Required No crazy IDs here - just pass your search query using ?query=. Your query should be URL encoded.
Top integer Optional Number of results to display

too long

Search High Schools

Get information about an event.

GET https://www.myutr.com/api/v2/search/highSchools

Parameter Type Required? Description
Query String Required No crazy IDs here - just pass your search query using ?query=. Your query should be URL encoded.
Top integer Optional Number of results to display

too long

Search Colleges

Get information about an event.

GET https://www.myutr.com/api/v2/search/colleges

Parameter Type Required? Description
Query String Required No crazy IDs here - just pass your search query using ?query=. Your query should be URL encoded.
Top integer Optional Number of results to display

too long