GitHub

Get GitHub Stats

Fetch aggregated GitHub issue statistics for the configured repository.

GET
/api/v1/github/stats

Authorization

X-API-Key<token>

Your personal API key.

In: header

Response Body

application/json

curl -X GET "https://api.veriworkly.com/api/v1/github/stats"
{
  "success": true,
  "message": "Stats fetched successfully",
  "data": {
    "projectName": "owner/repo",
    "stats": {
      "total": 120,
      "todo": 40,
      "inProgress": 30,
      "done": 50,
      "completionRate": "41.67"
    },
    "syncedAt": "2026-04-26T10:00:00.000Z"
  }
}