List commits
get
https://api.intelig.ai/api/v1/intelig/commits
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getCommits
Get paginated list of commits with optional filters. Supports filtering by repository, contributor, date range, and branch. Results are ordered by commit date descending.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/commits?request=string" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
request | CommitListRequestDto | yes | — |
Response 200
application/json · ApiResponseCommitListResponseDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | CommitListResponseDto | Paginated list of commit summaries |
Status codes
200— Paginated commit list returned successfully400— Invalid request parameters401— Unauthorized - invalid or missing JWT token429— —
Every response is wrapped in { success, message, data }. A 4xx means the request
is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.