GitHub
Get GitHub Issues
Fetch paginated GitHub issues and pull requests with optional filters.
X-API-Key<token>
Your personal API key.
In: header
Query Parameters
status?string
Value in
"todo" | "in-progress" | "done"kind?string
Value in
"issue" | "pull-request" | "all"limit?integer
Default
20Range
1 <= value <= 100offset?integer
Default
0Range
0 <= valueResponse Body
application/json
application/json
curl -X GET "https://api.veriworkly.com/api/v1/github/issues"{
"success": true,
"message": "Issues fetched successfully",
"data": {
"items": [
{
"id": "gh-123456",
"number": 42,
"title": "Add new feature",
"status": "in-progress",
"kind": "issue",
"url": "https://github.com/owner/repo/issues/42",
"labels": [
"enhancement"
],
"createdAt": "2026-04-20T10:00:00.000Z",
"updatedAt": "2026-04-25T10:00:00.000Z"
}
],
"total": 1,
"limit": 20,
"offset": 0
}
}{
"success": true,
"message": "string",
"statusCode": 0,
"details": [
{
"path": "string",
"message": "string"
}
]
}