GET
/
v0
/
project
/
{project_name}
/
commits
curl --request GET \
  --url 'https://api.unify.ai/v0/project/proj/a/commits' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "commit_hash": "string",
    "commit_message": "string | null",
    "created_at": "string",
    "prev_commit_hash": "string | null",
    "next_commit_hash": "[string]"
}
Retrieves the commit history for a versioned project.

Authorizations

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

Path Parameters

project_name
string
required
Project name, may contain slashes
curl --request GET \
  --url 'https://api.unify.ai/v0/project/proj/a/commits' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "commit_hash": "string",
    "commit_message": "string | null",
    "created_at": "string",
    "prev_commit_hash": "string | null",
    "next_commit_hash": "[string]"
}