GitHub

Get GitHub Issues

Fetch paginated GitHub issues and pull requests with optional filters.

GET
/api/v1/github/issues

Authorization

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
Default20
Range1 <= value <= 100
offset?integer
Default0
Range0 <= value

Response 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"
    }
  ]
}