15. API

15.1 Getting started

The Rankedin Public API lets your organization read selected Rankedin data programmatically — for example to check on your own website whether a player holds an active license, or to see which teams in your Team League have paid their fees. Access is granted per organization through an API key. Generate your API key You need to be an admin of a club or organization in Rankedin. - Go to Organization Manager → your organization → Settings. - Scroll to the last section, Public API, and open it....

15.2 Player

Two endpoints: a public name lookup, and the license check used for member zones. Look up a player name GET/v1/player/{rankedinId} Turns a Rankedin ID into the player's name — useful for showing readable names next to the IDs returned by the other endpoints. Request curl -H "X-API-Key: your_api_key_here" \ "https://rinpublicapistaging.azurewebsites.net/v1/player/R000006081" Response { "name": "Stefan Rankedin Support" } This returns the player's public profile name, the same one shown ...

15.3 Organization

Look up an organization name GET/v1/organization/{organizationId} Turns an organization ID into its name. Parameters Parameter Description organizationId The organization's ID in Rankedin — a positive number, e.g. 803. You can see it in the address bar of your Organization Manager page. Request curl -H "X-API-Key: your_api_key_here" \ "https://rinpublicapistaging.azurewebsites.net/v1/organization/803" Response { "name": "Sele Admin Organization" } Errors Code Status Cause organizatio...

15.4 Team League

List teams and payment status GET/v1/teamleague/{teamLeagueId}/teams Returns every team in one of your Team Leagues, with league fee payment status, team admins, captain, players and the team's billing address. Typical use: check which teams have paid before the season starts. Parameters Parameter Description teamLeagueId The Team League ID in Rankedin — a positive number, e.g. 14245. The Team League must belong to your organization, otherwise you get 403 Forbidden. Request curl -H "X-API-...