---
title: "List the commit history"
method: GET
path: "/version"
tags: ["versioning"]
---

# List the commit history

`GET /version`

List the commit history.<br/><br/>Analogous to <code>git log</code> for the Cribl configuration, allowing you to audit and review changes over time.

## Query parameters

- `count` integer
- `offset` integer
- `limit` integer

## Response `200`

List of GitLogResult objects.

- PaginatedGitLogResult
  - `items` GitLogResult[], required — The pre-limited items in the list of results
    - `author_email` string — Email address of the commit author.
    - `author_name` string — Display name of the commit author.
    - `body` string — Body of the commit message, excluding the subject line.
    - `date` string — Date and time of the commit in ISO 8601 format with timezone offset.
    - `hash` string — Full SHA-1 hash of the commit.
    - `message` string — First line of the commit message (the subject).
    - `refs` string — Git refs (branches, tags) pointing to this commit.
  - `count` integer, required — Number of items present in the items array
  - `offset` integer — Pagination offset. Returned when offset/limit query parameters are provided.
  - `limit` integer — Pagination limit. Returned when offset/limit query parameters are provided.
  - `totalCount` integer — Total number of items available. Returned when offset/limit query parameters are provided.

## Other responses

- `401` — Authentication failed (missing or invalid credentials or Bearer token).
- `500` — Unexpected server error.

---

[API](https://skmtc.dev/criblio/apis/cribl-api-reference.md) · [All operations](https://skmtc.dev/criblio/apis/cribl-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/criblio/cribl-api-reference/revisions/56cb25079271/schema)
