Skip to main content
GET
/
api
/
commits
/
authors
List commit authors
curl --request GET \
  --url https://api.example.com/api/commits/authors \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "email": "<string>",
    "commitCount": 1
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your API key.

Query Parameters

repo
string
required

The fully-qualified repository name.

ref
string

The git ref (branch, tag, or commit SHA) to list authors from. Defaults to HEAD.

path
string

Restrict authors to those who touched this file path.

page
integer
default:1
Required range: x > 0
perPage
integer
default:50
Required range: 0 < x <= 100

Response

Paginated commit author list.

name
string
required
email
string
required
commitCount
integer
required
Required range: x >= 0