Skip to main content
GET
/
team-data
/
list
Get All Teams
curl --request GET \
  --url https://www.api.baselink.tech/team-data/list \
  --header 'bearer: <api-key>'
{
  "teams": [
    {}
  ],
  "teams[].id": "<string>",
  "teams[].name": "<string>",
  "teams[].description": "<string>",
  "teams[].memberCount": 123,
  "teams[].repositoryCount": 123,
  "teams[].createdAt": "<string>"
}
Retrieve a list of all teams in the system.
teams
array
Array of team objects.
teams[].id
string
The unique identifier of the team.
teams[].name
string
The name of the team.
teams[].description
string
The description of the team.
teams[].memberCount
number
The number of members in the team.
teams[].repositoryCount
number
The number of repositories in the team.
teams[].createdAt
string
The creation timestamp of the team.