GET
/
v0
/
project
/
{project_name}
/
contexts
/
{context_name}
/
commits
curl --request GET \
  --url 'https://api.unify.ai/v0/project/<project_name>/contexts/<context_name>/commits' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "commit_hash": "string",
    "commit_message": "string | null",
    "created_at": "string",
    "type": "string"
}

Retrieves the commit history for a versioned context.

Authorizations

Authorization
string
required

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

Path Parameters

project_name
string
required
context_name
string
required
curl --request GET \
  --url 'https://api.unify.ai/v0/project/<project_name>/contexts/<context_name>/commits' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "commit_hash": "string",
    "commit_message": "string | null",
    "created_at": "string",
    "type": "string"
}