Skip to main content
GET
/
github-api
/
repoIssues
/
:teamDataId
Get Repository Issues
curl --request GET \
  --url https://www.api.baselink.tech/github-api/repoIssues/:teamDataId \
  --header 'bearer: <api-key>'
{
  "issues": [
    {}
  ],
  "issues[].id": 123,
  "issues[].number": 123,
  "issues[].title": "<string>",
  "issues[].body": "<string>",
  "issues[].state": "<string>",
  "issues[].labels": [
    {}
  ],
  "issues[].assignees": [
    {}
  ],
  "issues[].created_at": "<string>",
  "issues[].updated_at": "<string>"
}
Retrieve issues from a GitHub repository.
issues
array
Array of GitHub issue objects.
issues[].id
number
The unique identifier of the GitHub issue.
issues[].number
number
The issue number within the repository.
issues[].title
string
The title of the issue.
issues[].body
string
The body/description of the issue.
issues[].state
string
The current state of the issue (open, closed).
issues[].labels
array
Array of labels associated with the issue.
issues[].assignees
array
Array of users assigned to the issue.
issues[].created_at
string
The creation timestamp of the issue.
issues[].updated_at
string
The last update timestamp of the issue.