Skip to main content
GET
/
repo-data
/
:repoDataId
Get Repository by ID
curl --request GET \
  --url https://www.api.baselink.tech/repo-data/:repoDataId \
  --header 'bearer: <api-key>'
{
  "repository": {},
  "repository.id": "<string>",
  "repository.name": "<string>",
  "repository.url": "<string>",
  "repository.description": "<string>",
  "repository.teamId": "<string>",
  "repository.members": [
    {}
  ],
  "repository.createdAt": "<string>"
}
Retrieve detailed information about a specific repository.
repository
object
The repository object.
repository.id
string
The unique identifier of the repository.
repository.name
string
The name of the repository.
repository.url
string
The URL of the repository.
repository.description
string
The description of the repository.
repository.teamId
string
The ID of the team that owns the repository.
repository.members
array
Array of repository members.
repository.createdAt
string
The creation timestamp of the repository.