Skip to content

User Get Athletes

François Dupont edited this page Jun 5, 2026 · 4 revisions

Endpoint:

  • /get/athletes/
  • HTTP Method: GET

Parameters :

  • wants_coach: bool : true if you want to include coach

Example:

Production:
https://www.nolio.io/api/get/athletes/?wants_coach=false

Returns: the athletes you manage. Each athlete carries the list of teams (teams: [{id, name}]) through which you manage them. An athlete managed in several of your teams appears once, with every matching team listed in teams.

When wants_coach=true, the coach (token owner) is appended at the end with an empty teams list.

[{
 "nolio_id": 1,
 "name": "Vincent Luis",
 "teams": [
   {"id": 12, "name": "Triathlon Pro"}
 ]
},
{
 "nolio_id": 2,
 "name": "Ugo Ferrari",
 "teams": [
   {"id": 12, "name": "Triathlon Pro"},
   {"id": 34, "name": "Elite Squad"}
 ]
}]

Clone this wiki locally