Skip to main content
GET
/
projects
/
{projectId}
/
git
/
commits
/
{repositoryCommitId}
Error
A valid request URL is required to generate request examples
{
  "id": "<string>",
  "sha": "<string>",
  "author": {
    "date": "2023-11-07T05:31:56Z",
    "name": "<string>",
    "email": "<string>"
  },
  "committer": {
    "date": "2023-11-07T05:31:56Z",
    "name": "<string>",
    "email": "<string>"
  },
  "message": "<string>",
  "tree": "<string>",
  "parents": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.upsun.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

projectId
string
required
repositoryCommitId
string
required

Response

default - application/json
id
string
required

The identifier of Commit

sha
string
required

The identifier of the commit

author
Author Β· object
required

The information about the author

committer
Committer Β· object
required

The information about the committer

message
string
required

The commit message

tree
string
required

The identifier of the tree

parents
string[]
required

The identifiers of the parents of the commit

Last modified on May 7, 2026