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