Skip to main content
GET
/
repo-data
/
list
Get All Repositories
curl --request GET \
  --url https://www.api.baselink.tech/repo-data/list \
  --header 'bearer: <api-key>'
{
  "repositories": [
    {}
  ],
  "repositories[].id": "<string>",
  "repositories[].name": "<string>",
  "repositories[].url": "<string>",
  "repositories[].description": "<string>",
  "repositories[].teamId": "<string>",
  "repositories[].memberCount": 123,
  "repositories[].createdAt": "<string>"
}
Retrieve a list of all repositories in the system.
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[].teamId
string
The ID of the team that owns the repository.
repositories[].memberCount
number
The number of members in the repository.
repositories[].createdAt
string
The creation timestamp of the repository.